diff --git a/.bazelrc b/.bazelrc index bad1849b..761f1dd5 100644 --- a/.bazelrc +++ b/.bazelrc @@ -36,6 +36,10 @@ common:mkl --platform_suffix=mkl build:system --noincompatible_enable_cc_toolchain_resolution build:system --platform_suffix=system +# GCC 11 system toolchain +build:system-gcc11 --platforms=@rules_swiftnav//platforms:gcc_11_system +build:system-gcc11 --platform_suffix=system-gcc11 + # Clang format config build:clang-format-check --aspects @rules_swiftnav//clang_format:clang_format_check.bzl%clang_format_check_aspect build:clang-format-check --@rules_swiftnav//clang_format:clang_format_config=//:clang_format_config diff --git a/BUILD.bazel b/BUILD.bazel index fa9e5714..87c22c14 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -1,4 +1,4 @@ -load("@rules_swiftnav//cc:defs.bzl", "UNIT", "swift_cc_test", "swift_cc_test_library") +load("@rules_swiftnav//cc:defs2.bzl", "UNIT", "swift_add_safe_cc_library", "swift_add_cc_test", "swift_add_test_cc_library") alias( name = "clang_format", @@ -11,7 +11,7 @@ filegroup( visibility = ["//visibility:public"], ) -cc_library( +swift_add_safe_cc_library( name = "albatross", hdrs = [ "include/albatross/Common", @@ -174,7 +174,7 @@ cc_library( ], ) -swift_cc_test_library( +swift_add_test_cc_library( name = "serialize-testsuite", srcs = ["tests/test_serialize.h"], includes = [ @@ -184,7 +184,7 @@ swift_cc_test_library( deps = ["@gtest"], ) -swift_cc_test_library( +swift_add_test_cc_library( name = "albatross-test-common", srcs = [ "tests/mock_model.h", @@ -206,7 +206,7 @@ TEST_DEPS = [ "@suitesparse//:spqr", ] -swift_cc_test( +swift_add_cc_test( name = "albatross-test-traits", srcs = [ "tests/test_traits_cereal.cc", @@ -222,7 +222,7 @@ swift_cc_test( deps = TEST_DEPS, ) -swift_cc_test( +swift_add_cc_test( name = "albatross-test-covariance", srcs = [ "tests/test_covariance_function.cc", @@ -237,7 +237,7 @@ swift_cc_test( deps = TEST_DEPS, ) -swift_cc_test( +swift_add_cc_test( name = "albatross-test-indexing", srcs = [ "tests/test_apply.cc", @@ -251,7 +251,7 @@ swift_cc_test( deps = TEST_DEPS, ) -swift_cc_test( +swift_add_cc_test( name = "albatross-test-core", srcs = [ "tests/test_concatenate.cc", @@ -268,7 +268,7 @@ swift_cc_test( deps = TEST_DEPS, ) -swift_cc_test( +swift_add_cc_test( name = "albatross-test-models", srcs = [ "tests/test_conditional_gaussian.cc", @@ -283,7 +283,7 @@ swift_cc_test( deps = TEST_DEPS, ) -swift_cc_test( +swift_add_cc_test( name = "albatross-test-utils", srcs = [ "tests/test_async_utils.cc", @@ -304,7 +304,7 @@ swift_cc_test( deps = TEST_DEPS, ) -swift_cc_test( +swift_add_cc_test( name = "albatross-test-evaluation", srcs = [ "tests/test_evaluate.cc", @@ -316,7 +316,7 @@ swift_cc_test( deps = TEST_DEPS, ) -swift_cc_test( +swift_add_cc_test( name = "albatross-test-cross-validation", srcs = [ "tests/test_cross_validation.cc", @@ -328,7 +328,7 @@ swift_cc_test( deps = TEST_DEPS, ) -swift_cc_test( +swift_add_cc_test( name = "albatross-test-serialization", srcs = [ "tests/test_serialize.cc", @@ -340,7 +340,7 @@ swift_cc_test( deps = TEST_DEPS, ) -swift_cc_test( +swift_add_cc_test( name = "albatross-test-stats", srcs = [ "tests/test_chi_squared_versus_gsl.cc", @@ -352,7 +352,7 @@ swift_cc_test( deps = TEST_DEPS, ) -swift_cc_test( +swift_add_cc_test( name = "albatross-test-samplers", srcs = [ "tests/test_samplers.cc", @@ -363,7 +363,7 @@ swift_cc_test( deps = TEST_DEPS, ) -swift_cc_test( +swift_add_cc_test( name = "albatross-test-tune", srcs = [ "tests/test_tune.cc", @@ -374,7 +374,7 @@ swift_cc_test( deps = TEST_DEPS, ) -swift_cc_test( +swift_add_cc_test( name = "albatross-test-misc", srcs = [ "tests/test_call_trace.cc", diff --git a/MODULE.bazel b/MODULE.bazel index 9e1c5ae4..a0556ab2 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -7,6 +7,11 @@ module( bazel_dep(name = "bazel_skylib", version = "1.7.1") bazel_dep(name = "platforms", version = "0.0.11") bazel_dep(name = "rules_swiftnav", version = "0.5.0") +git_override( + module_name = "rules_swiftnav", + commit = "02144e3668556504ebe5a045ae0f53968d7ea667", + remote = "https://github.com/swift-nav/rules_swiftnav.git", +) swift_cc_toolchain_ext = use_extension("@rules_swiftnav//cc:extensions.bzl", "swift_cc_toolchain_extension") use_repo( @@ -27,6 +32,7 @@ register_toolchains( "@rules_swiftnav//cc/toolchains/llvm/x86_64-linux:cc-toolchain-intel-mkl", "@rules_swiftnav//cc/toolchains/llvm/x86_64-aarch64-linux:cc-toolchain-aarch64-bullseye-graviton2", "@rules_swiftnav//cc/toolchains/llvm/x86_64-aarch64-linux:cc-toolchain-aarch64-bullseye-graviton3", + "@rules_swiftnav//cc/toolchains/gcc_11/x86_64-linux:gcc_11_system_toolchain", ) bazel_dep(name = "eigen", version = "0.1.0.swiftnav") diff --git a/MODULE.bazel.lock b/MODULE.bazel.lock index eb09a7f7..0fba310c 100644 --- a/MODULE.bazel.lock +++ b/MODULE.bazel.lock @@ -97,14 +97,12 @@ "https://bcr.bazel.build/modules/rules_kotlin/1.9.6/MODULE.bazel": "d269a01a18ee74d0335450b10f62c9ed81f2321d7958a2934e44272fe82dcef3", "https://bcr.bazel.build/modules/rules_kotlin/1.9.6/source.json": "2faa4794364282db7c06600b7e5e34867a564ae91bda7cae7c29c64e9466b7d5", "https://bcr.bazel.build/modules/rules_license/0.0.3/MODULE.bazel": "627e9ab0247f7d1e05736b59dbb1b6871373de5ad31c3011880b4133cafd4bd0", - "https://bcr.bazel.build/modules/rules_license/0.0.4/MODULE.bazel": "6a88dd22800cf1f9f79ba32cacad0d3a423ed28efa2c2ed5582eaa78dd3ac1e5", "https://bcr.bazel.build/modules/rules_license/0.0.7/MODULE.bazel": "088fbeb0b6a419005b89cf93fe62d9517c0a2b8bb56af3244af65ecfe37e7d5d", "https://bcr.bazel.build/modules/rules_license/1.0.0/MODULE.bazel": "a7fda60eefdf3d8c827262ba499957e4df06f659330bbe6cdbdb975b768bb65c", "https://bcr.bazel.build/modules/rules_license/1.0.0/source.json": "a52c89e54cc311196e478f8382df91c15f7a2bfdf4c6cd0e2675cc2ff0b56efb", "https://bcr.bazel.build/modules/rules_oci/1.0.0/MODULE.bazel": "8ed3490394e9cda2c7c0f7efe8232f8ad6bfcc40ce09cd2020e2e780a519ba55", "https://bcr.bazel.build/modules/rules_oci/1.0.0/source.json": "20ca7fdf35d343df26be3242e648e817ebc2fa0b86047899026c970388f6ef36", "https://bcr.bazel.build/modules/rules_pkg/0.7.0/MODULE.bazel": "df99f03fc7934a4737122518bb87e667e62d780b610910f0447665a7e2be62dc", - "https://bcr.bazel.build/modules/rules_pkg/0.9.1/MODULE.bazel": "af00144208c4be503bc920d043ba3284fb37385b3f6160b4a4daf4df80b4b823", "https://bcr.bazel.build/modules/rules_pkg/1.0.1/MODULE.bazel": "5b1df97dbc29623bccdf2b0dcd0f5cb08e2f2c9050aab1092fd39a41e82686ff", "https://bcr.bazel.build/modules/rules_pkg/1.0.1/source.json": "bd82e5d7b9ce2d31e380dd9f50c111d678c3bdaca190cb76b0e1c71b05e1ba8a", "https://bcr.bazel.build/modules/rules_proto/4.0.0/MODULE.bazel": "a7a7b6ce9bee418c1a760b3d84f83a299ad6952f9903c67f19e4edd964894e06", @@ -219,12 +217,10 @@ "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/rules_kotlin/1.9.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/rules_kotlin/1.9.6/MODULE.bazel": "not found", "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/rules_license/0.0.3/MODULE.bazel": "not found", - "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/rules_license/0.0.4/MODULE.bazel": "not found", "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/rules_license/0.0.7/MODULE.bazel": "not found", "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/rules_license/1.0.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/rules_oci/1.0.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/rules_pkg/0.7.0/MODULE.bazel": "not found", - "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/rules_pkg/0.9.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/rules_pkg/1.0.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/rules_proto/4.0.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/rules_proto/5.3.0-21.7/MODULE.bazel": "not found", @@ -239,10 +235,6 @@ "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/rules_python/0.4.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/rules_python/0.40.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/rules_shell/0.2.0/MODULE.bazel": "not found", - "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/rules_swiftnav/0.1.0/MODULE.bazel": "014a2928c9310824edb46d5e0429763804e32455bc064d8950ff484b2efed5ff", - "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/rules_swiftnav/0.5.0/MODULE.bazel": "02c7edc573d8e63adc2895d4102c158cbd6e60281c7b316103dc6fa47e580c49", - "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/rules_swiftnav/0.6.0/MODULE.bazel": "aabbeb6e09c9e6bffacb20a63c064c0fe1d4ac528fb2d664c222e2939121c823", - "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/rules_swiftnav/0.6.0/source.json": "8b32a21130b6983701b237eef9177df5e6c0aa778767900cb74d3731a2775759", "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/stardoc/0.5.0/MODULE.bazel": "not found", "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/stardoc/0.5.1/MODULE.bazel": "not found", "https://raw.githubusercontent.com/swift-nav/swiftnav-bazel-registry/refs/heads/main/modules/stardoc/0.5.3/MODULE.bazel": "not found", @@ -879,7 +871,7 @@ "@@rules_swiftnav+//cc:extensions.bzl%swift_cc_toolchain_extension": { "general": { "bzlTransitiveDigest": "zDwq2yBSEJXdECtks4+trENu8MzrMfkm5FDsxbO1KrE=", - "usagesDigest": "AOjN1Mvr1H8V6cfdQwg2RoMP3ylHBG9CtEAk7eyNapw=", + "usagesDigest": "zYgVl2AOT+lqF4JD6nd0sD13O5QP+npgOZ1HTZyo5sg=", "recordedFileInputs": {}, "recordedDirentsInputs": {}, "envVariables": {}, diff --git a/Makefile b/Makefile index 4b082107..31bfcb04 100644 --- a/Makefile +++ b/Makefile @@ -21,3 +21,6 @@ do-generate-coverage-report: do-code-coverage gen-compile-commands: bazel run //tools/compile_commands:gen_compile_commands + +check-targets: + bazel run @rules_swiftnav//cc:checktags diff --git a/compile_commands.after.json b/compile_commands.after.json new file mode 100644 index 00000000..c19ce960 --- /dev/null +++ b/compile_commands.after.json @@ -0,0 +1,376298 @@ +[ + { + "file": "tests/test_tune.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/functexcept.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/typesizes.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/arch/CUDA/TypeCasting.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/gtest-filepath.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest-message.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/stdint.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/functors/UnaryFunctors.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/AngleAxis.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_Structs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/LU/Determinant.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/indexing/apply.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/HessenbergDecomposition.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/distance_metrics.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/arch/Geometry_SSE.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/sigthread.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Diagonal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/indexing/group_by.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/gtest-type-util.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/std_mutex.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/pthread.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/mm_malloc.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/SelfCwiseBinaryOp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_column_bmod.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/QR/ColPivHouseholderQR.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/linalg/../src/linalg/block_diagonal.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/any", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/ArrayWrapper.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/measurement.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/optional", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/siginfo-arch.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/signal_ext.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/EigenSolver.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Householder/HouseholderSequence.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SVD/BDCSVD.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/SelfAdjointView.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Redux.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SVD/JacobiSVD.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/./HessenbergDecomposition.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/atomic", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/indexing/declarations.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/linalg/block_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest_prod.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/ParametrizedLine.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/uses_allocator.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/linux/types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/allocated_ptr.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/initializer_list", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/utils/eigen_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/streambuf", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCholesky/../Core/util/NonMPL2.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/../plugins/ArrayCwiseBinaryOps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api/nlopt.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/../plugins/CommonCwiseUnaryOps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/error_constants.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_tree.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/sigaction.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/map", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_bvector.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/asm-generic/types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/linalg/../src/linalg/qr_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/IterativeLinearSolvers", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/Homogeneous.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/unordered_map", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/covariance_function.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/errno.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Cholesky/LLT.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/ProductEvaluators.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Stats", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/sys/wait.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/algorithm", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/ReturnByValue.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/regex.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/CoreIterators.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparsePermutation.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/IO.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/linux/stddef.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/cpu_defines.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/Geometry", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/GP", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/Translation.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/signum-generic.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/Quaternion.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/EigenBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Householder/BlockHouseholder.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/MatrixBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/Macros.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/transformed_distribution.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/MapBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/Constants.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/setjmp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/errno.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/ctype_inline.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCholesky/SimplicialCholesky.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/future", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/AlignedBox.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/model.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/waitflags.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cstdio", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Fuzzy.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/sigcontext.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Tune", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/utils/compress.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/ComplexSchur.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/thread", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/timex.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/SelfadjointMatrixVector.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_Memory.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/CwiseBinaryOp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/parse_numbers.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/environments.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ext/string_conversions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/SelfadjointProduct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_multimap.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/custom/gtest-printers.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/linux/errno.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/utils/vector_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/alloca.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/stats/ks_test.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/ComplexEigenSolver.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Include/SuiteSparseQR_definitions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/../plugins/CommonCwiseBinaryOps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/posix_opt.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_Utils.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/signal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/LU/PartialPivLU.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/TriangularSolver.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/byteswap.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/vector", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseCwiseUnaryOp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/BandMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_pruneL.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SVD/SVDBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/locale", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/Meta.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/StableNorm.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/array", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/arch/SSE/TypeCasting.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/ss_flags.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_iterator_base_funcs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/stat.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/sigval_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest-typed-test.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ext/new_allocator.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/time.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/exception.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/fp-logb.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_construct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/postypes.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/DisableStupidWarnings.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/gthr.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/locale_facets.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/cxxabi_init_exception.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseRef.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/radial.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Swap.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_function.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cwctype", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/priors.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/NestByValue.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/limits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/asm/types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/float.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/shared_ptr_base.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/linux/posix_types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/BooleanRedux.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/PermutationMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/../plugins/BlockMethods.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest_pred_impl.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseDot.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/stack_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/streambuf.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/hashtable_policy.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ext/concurrence.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/istream.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/details/typecast.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/PlainObjectBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/string_view", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/locale_facets_nonio.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/asm/errno.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseRedux.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/evaluation/cross_validation_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/./RealSchur.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/scaling_function.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/ostream.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/StaticAssert.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/exception", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Cholesky/LDLT.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/hashtable.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/gzip_hpp+/include/gzip/config.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ios", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/range_access.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/TriangularMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Ref.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/c++allocator.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/details/unused.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/climits", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Indexing", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_tempbuf.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/set", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/stats/gaussian.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/TriangularMatrixMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/traits.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/../plugins/ArrayCwiseUnaryOps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Core", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/arch/CUDA/PacketMathHalf.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_raw_storage_iter.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/tuple", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/../plugins/MatrixCwiseBinaryOps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/LU/InverseImpl.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/ranges_uninitialized.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/concept_check.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/representations.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest-test-part.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseTriangularView.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/move.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_iterator.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/evaluation/traits.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ctime", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/SolverBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/atomic_futex.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/messages_members.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/models/sparse_gp.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/clock_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/utility", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/arch/Default/Settings.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Transpositions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/siginfo-consts-arch.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseCompressedBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/codecvt.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/local_lim.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/math-vector.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_map.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/signum.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stream_iterator.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/sys/stat.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ext/aligned_buffer.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/unistd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/functors/BinaryFunctors.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/Tridiagonalization.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/sys_errlist.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/concatenate.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/locale_conv.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/numeric", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/type_traits", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/SparseLU", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/evaluation/folds.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../src/utils/async_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/std_abs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/invoke.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/chrono", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/mock_model.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/allocator.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/select.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ext/type_traits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/uniform_int_dist.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/gtest-port-arch.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/sigstack.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/gtest-param-util.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/basic_string.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/linalg/../Common", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ciso646", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/posix1_lim.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/../plugins/MatrixCwiseUnaryOps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Block.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Replicate.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/../plugins/CommonCwiseUnaryOps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseSolverBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cassert", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/assert.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/arch/SSE/MathFunctions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/callers.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/stdlib.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseDenseProduct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/functors/NullaryFunctors.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cctype", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/std_function.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/linalg/Utils", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/iostream", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/__FILE.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/confname.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/AssignEvaluator.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/siginfo-consts.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/CwiseUnaryView.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/stdlib-float.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/clocale", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/traits.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/evaluation/likelihood.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/custom/gtest-port.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_panel_dfs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/time64.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/CwiseNullaryOp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/utils/map_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/misc/RealSvd2x2.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/DenseStorage.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/ForwardDeclarations.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/vector.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/OrderingMethods/Eigen_Colamd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/gzip_hpp+/include/gzip/decompress.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/parameter_macros.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/./ComplexSchur.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/fit_model.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/memoryfwd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/erase_if.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/iterator_concepts.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/SelfadjointRank2Update.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/QR/FullPivHouseholderQR.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Ransac", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/RotationBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Include/SuiteSparseQR.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Inverse.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/typeinfo", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/stats/chi_squared.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/polynomials.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/Rotation2D.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/Core", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/SparseCholesky", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/Jacobi", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/new", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/complex", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/iscanonical.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/noise.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/sstream", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/eigen/serializable_spqr.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/span", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/sys/ucontext.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/MathFunctionsImpl.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/variant+/include/mapbox/recursive_wrapper.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/uio_lim.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/math.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/time.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/iomanip", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/linux/limits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/endian.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/sstream.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/tune/finite_difference.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/SPQRSupport", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/ostream_insert.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/deque", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseUtil.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/models/least_squares.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/system_error", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseVector.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/asm-generic/errno.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/memory", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/uintn-identity.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/models/ransac_gp.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest-printers.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/LeastSquares", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/TriangularSolverVector.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseSelfAdjointView.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/wint_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/wctype.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Transpose.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/functors/StlFunctors.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/functors/AssignmentFunctors.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/arch/CUDA/Complex.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Dot.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/wctype-wchar.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/TriangularSolverMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/getopt_core.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/QR", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/queue", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/CholmodSupport/CholmodSupport.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest-assertion-result.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/string", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/stdio.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/GeneralBlockPanelKernel.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/cpp_type_traits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseBlock.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/tune/tune.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cstdlib", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/Sparse", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseFuzzy.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_algobase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stringfwd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/CommaInitializer.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_heap.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/indexing/traits.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/string.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/asm/bitsperlong.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/SparseCore", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/linalg/../src/linalg/block_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/asm/posix_types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/arch/CUDA/Half.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/SparseQR", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/Dense", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/tune/greedy_tuner.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/Hyperplane.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/OrderingMethods/Ordering.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/ForwardDeclarations", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseQR/SparseQR.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/libc-header-start.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/OrthoMethods.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/mathcalls.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/deque.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest-matchers.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/os_defines.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseCwiseBinaryOp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/functional", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/ctype.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseDiagonalProduct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/sigevent-consts.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/NoAlias.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/GeneralProduct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/mean_function.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/locale_classes.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_column_dfs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/NullModel", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/cxxabi_tweaks.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/stdlib.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/Cholesky", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/inttypes.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/EulerAngles.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/unique_lock.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest-param-test.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/evaluation/cross_validation.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/compare", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/posix2_lim.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include/zlib.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/ios_base.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/Umeyama.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/stdc-predef.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_list.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Evaluation", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ext/numeric_traits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/endian.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/VectorBlock.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/AsyncUtils", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/CwiseUnaryOp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/math.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/locale_classes.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/linalg/../src/linalg/block_symmetric.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cmath", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/MathFunctions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/predefined_ops.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/stddef.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_multiset.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/SparseGP", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/models/null_model.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/exception_defines.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/asm-generic/errno-base.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/DiagonalProduct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/linalg/Block", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/../plugins/MatrixCwiseBinaryOps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/limits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/evaluation/prediction_metrics.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/asm/posix_types_64.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/emmintrin.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_utils.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/gzip_hpp+/include/gzip/compress.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/statx-generic.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/cxxabi_forced.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/strings.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_gemm_kernel.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/asm-generic/int-ll64.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/details/error_handling.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/getopt_posix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/DiagonalMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/RealSchur.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_models.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_relax_snode.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/backward/binders.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/gtest-port.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/DenseCoeffsBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/atomic_base.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/sys/cdefs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/floatn-common.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_deque.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/random", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/ReenableStupidWarnings.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_panel_bmod.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/functional_hash.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/call_trace.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/TriangularMatrixVector.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Include/cholmod.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/stdint-intn.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ext/alloc_traits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/inttypes.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/unique_ptr.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/tune/tuning_metrics.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/charconv.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/unordered_map.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/xmmintrin.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/utils/random_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/basic_string.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/istream", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/threadpool+/ThreadPool.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Householder/Householder.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseMap.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/long-double.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/xopen_lim.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/./RealQZ.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/alloc_traits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/debug/debug.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/libintl.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/AmbiVector.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/GeneralMatrixMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/iosfwd", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/refwrap.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SVD/UpperBidiagonalization.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/models/ransac.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include/zconf.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/VectorwiseOp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/MKL_support.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/random.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/details/traits.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/Eigenvalues", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/locale.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ratio", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/LU", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/quoted_string.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/wordsize.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/atomic_lockfree_defines.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/indexing/unique.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/../plugins/BlockMethods.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/functors/TernaryFunctors.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/sys/select.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/indexing/block.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLUImpl.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/variant+/include/mapbox/variant.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/struct_mutex.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/sched.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/sched.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/GenericPacketMath.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_vector.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/eigen/serializable_ldlt.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/gtest-death-test-internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Dataset", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/stdarg.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/Memory.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/shared_ptr_atomic.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/locale_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/stdexcept", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/exception_ptr.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/algorithmfwd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/basic_ios.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseTranspose.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/features.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseAssign.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/stats/gauss_legendre.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/timesize.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Select.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/statx.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_kernel_bmod.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/DenseBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/iterator", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/QR/HouseholderQR.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/nested_exception.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Random.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/hash_bytes.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/list", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseSparseProductWithPruning.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/parameters.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/api/nlopt.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/gnu/stubs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/asm-generic/posix_types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Solve.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/condition_variable", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/evaluation/differential_entropy.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/range_cmp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/SVD", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cwchar", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cstddef", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ext/atomicity.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/arch/SSE/Complex.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Product.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/OrderingMethods/../Core/util/NonMPL2.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_numeric.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/limits", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/ArrayBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/variant", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/./Tridiagonalization.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/shared_ptr.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest-death-test.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/Householder", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/mutex", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/gtest-string.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/locale.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/SolveTriangular.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/MappedSparseMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Array.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseMatrixBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/prediction.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/CwiseTernaryOp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/LU/FullPivLU.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Map.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/../plugins/CommonCwiseBinaryOps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/list.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/fp-fast.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/linear_combination.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cxxabi.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_uninitialized.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/wchar.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/SelfadjointMatrixMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/indexing/subset.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/locale_facets.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../Common", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/BlasUtil.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/ConditionEstimator.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/nugget.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/linux/stat.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/time_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/error_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Visitor.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/CompressedStorage.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/gnu/stubs-64.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cstdint", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/locale_facets_nonio.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/endianness.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/atomic_word.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/localefwd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/asm-generic/bitsperlong.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/debug/assertions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/../plugins/MatrixCwiseUnaryOps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/CovarianceFunctions", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/variant+/include/mapbox/variant_visitor.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/misc/Image.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cerrno", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/zstd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_algo.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/parameter_handling_mixin.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_iterator_base_types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/gtest-internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/cpu-set.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/ptr_traits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/stats/incomplete_gamma.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/CoreEvaluators.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_pivotL.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/waitstatus.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/dataset.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/Transform.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ostream", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/stdio_lim.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/mmintrin.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/OrderingMethods", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_set.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/char_traits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/opt_random.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/wchar.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/ctype_base.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SuiteSparse_config/SuiteSparse_config.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/unistd_ext.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/stdint.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseColEtree.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/gthr-default.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/FILE.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cstring", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/GeneralMatrixVector.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseView.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/RealQZ.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Jacobi/Jacobi.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/linalg/../src/linalg/print_eigen_directions.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/models/gp.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/declarations.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_relops.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/version", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/basic_ios.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Common", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/__stddef_max_align_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/GlobalFunctions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_queue.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/models/conditional_gaussian.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/sys/types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Distribution", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/timer_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/OrderingMethods/Amd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Matrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/distribution.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/indexing/filter.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/linalg/../src/linalg/spqr_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/XprHelper.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/details/method_inspection_macros.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseProduct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/LU/arch/Inverse_SSE.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/QR/CompleteOrthogonalDecomposition.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Assign.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_pair.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/c++locale.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/misc/Kernel.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/Scaling.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/streambuf_iterator.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/concepts", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/time_members.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/floatn.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Reverse.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/NumTraits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/arch/SSE/PacketMath.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/random.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/c++config.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Stride.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/evaluation/model_metrics.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/backward/auto_ptr.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/Parallelizer.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/stdbool.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_serialize.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/details/helpers.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/fit_model.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/suitesparse.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/stringbuffer.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/cereal.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/dataset.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/parameters.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/unordered_set", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/GP", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/meta.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_serialize.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/macros.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/error/error.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/strtod.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/stack.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/details/static_object.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/variant.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/stack", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/prettywriter.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/rapidjson.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/encodings.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/swap.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/encodedstream.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/access.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/unordered_set.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/archives/xml.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/serializable_spqr.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/Core", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/gp.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/ThreadPool.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/archives/portable_binary.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/serializable_ldlt.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/dtoa.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/model.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/LeastSquares", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/stream.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/types/base_class.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/diyfp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidxml/rapidxml.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/types/vector.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/archives/json.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/itoa.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/archives/binary.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/Common", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/types/map.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/types/string.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/block_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/ostreamwrapper.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/traits.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/priors.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/ransac.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/RandomUtils", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/strfunc.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/details/util.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/../rapidjson.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/typeindex", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/types/concepts/pair_associative_container.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/representations.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/allocators.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/../stream.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/details/polymorphic_impl_fwd.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/error/../rapidjson.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/../allocators.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/document.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/memorystream.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/details/traits.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/distribution.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_stack.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidxml/rapidxml_print.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/pow10.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../src/utils/random_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/biginteger.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/reader.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/writer.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/Ransac", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/istreamwrapper.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/base64.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/ieee754.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/eigen.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/types/common.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/least_squares.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_serializable_ldlt.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serializable_ldlt.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serializable_ldlt.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_serializable_ldlt.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serializable_ldlt.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_apply.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_apply.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_apply.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_apply.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_apply.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_group_by.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_group_by.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_group_by.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_group_by.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_group_by.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_indexing.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_indexing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_indexing.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_indexing.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_indexing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_unique.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_unique.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_unique.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_unique.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_unique.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_traits_cereal.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_cereal.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_cereal.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_traits_cereal.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_cereal.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/cereal/traits.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_cereal.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_cereal.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_traits_cereal.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_cereal.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_traits_core.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_core.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_core.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_traits_core.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_core.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_traits_covariance_functions.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_covariance_functions.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_covariance_functions.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_traits_covariance_functions.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_covariance_functions.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_covariance_utils.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_covariance_functions.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_covariance_functions.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_traits_covariance_functions.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_covariance_functions.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_traits_details.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_details.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_details.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_traits_details.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_details.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_traits_evaluation.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_evaluation.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_evaluation.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_traits_evaluation.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_evaluation.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_traits_indexing.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_traits_indexing.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/../include/albatross/ForwardDeclarations", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_traits_indexing.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/../include/albatross/Distribution", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_traits_indexing.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/../include/albatross/Dataset", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_traits_indexing.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/../include/albatross/utils/../src/utils/async_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_traits_indexing.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/../include/albatross/utils/../Common", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_traits_indexing.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/../include/albatross/utils/AsyncUtils", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_traits_indexing.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/../include/albatross/Indexing", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_traits_indexing.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/../include/albatross/Common", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_traits_indexing.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_conditional_gaussian.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_conditional_gaussian.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_conditional_gaussian.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_conditional_gaussian.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_conditional_gaussian.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_gp.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_gp.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_gp.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_gp.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_gp.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_models.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_models.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_models.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_models.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_models.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_ransac.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_ransac.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_ransac.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_ransac.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_ransac.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_sparse_gp.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_sparse_gp.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_sparse_gp.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_sparse_gp.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_sparse_gp.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_samplers.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/traits.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/samplers/initialization.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/dataset.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/fit_model.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/fstream.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../src/utils/csv_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/Core", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/parameters.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Samplers", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/model.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/fstream", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/c++io.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/samplers/state.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/ThreadPool.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/CsvUtils", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/suitesparse.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/eigen.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/samplers/ensemble.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/basic_file.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/distribution.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/samplers/callbacks.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/Common", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/variant.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/priors.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_evaluate.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_evaluate.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_evaluate.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_evaluate.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_evaluate.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_model_metrics.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_model_metrics.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_async_utils.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_async_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_async_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_async_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_async_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_block_utils.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_block_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_block_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_block_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_block_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_compression.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_compression.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_compression.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_compression.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_compression.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_csv_utils.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_csv_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_csv_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_csv_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_csv_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/fast-cpp-csv-parser+/csv.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_csv_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_csv_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_csv_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_csv_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/utils/csv_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_csv_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_csv_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_csv_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_csv_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_eigen_utils.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_eigen_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_eigen_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_eigen_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_eigen_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_linalg_utils.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_linalg_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_linalg_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_linalg_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_linalg_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_map_utils.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_map_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_map_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_map_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_map_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_random_utils.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_random_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_random_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_random_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_random_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_thread_pool.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_thread_pool.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_thread_pool.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_thread_pool.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_thread_pool.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_variant_utils.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_variant_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_variant_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_variant_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_variant_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../src/utils/variant_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_variant_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_variant_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_variant_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_variant_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/VariantUtils", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_variant_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_variant_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_variant_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_variant_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_vector_utils.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_vector_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_vector_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_vector_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_vector_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_call_trace.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_call_trace.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_call_trace.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_call_trace.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_call_trace.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_callers.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_callers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_callers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_callers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_callers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_error_handling.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_error_handling.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_error_handling.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_error_handling.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_error_handling.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_minimum_spanning_tree.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_minimum_spanning_tree.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_minimum_spanning_tree.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_minimum_spanning_tree.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_minimum_spanning_tree.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Graph", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_minimum_spanning_tree.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_minimum_spanning_tree.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_minimum_spanning_tree.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_minimum_spanning_tree.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/graph/minimum_spanning_tree.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_minimum_spanning_tree.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_minimum_spanning_tree.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_minimum_spanning_tree.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_minimum_spanning_tree.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_model_adapter.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_model_adapter.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_model_adapter.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_model_adapter.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_model_adapter.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_covariance_function.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_covariance_function.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_covariance_function.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_covariance_function.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_covariance_function.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_covariance_functions.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_covariance_functions.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_covariance_functions.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_covariance_functions.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_covariance_functions.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_distance_metrics.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_distance_metrics.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_distance_metrics.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_distance_metrics.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_distance_metrics.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_radial.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_radial.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_radial.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_radial.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_radial.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_scaling_function.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_scaling_function.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_scaling_function.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_scaling_function.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_scaling_function.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_chi_squared_versus_gsl.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-stats/test_chi_squared_versus_gsl.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-stats/test_chi_squared_versus_gsl.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_chi_squared_versus_gsl.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-stats/test_chi_squared_versus_gsl.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_stats.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-stats/test_stats.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-stats/test_stats.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_stats.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-stats/test_stats.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_cross_validation.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-cross-validation/test_cross_validation.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-cross-validation/test_cross_validation.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_cross_validation.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-cross-validation/test_cross_validation.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_concatenate.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_concatenate.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_concatenate.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_concatenate.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_concatenate.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_core_dataset.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_dataset.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_dataset.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_core_dataset.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_dataset.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_core_distribution.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_distribution.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_distribution.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_core_distribution.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_distribution.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_core_distribution.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_distribution.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_distribution.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_core_distribution.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_distribution.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_core_model.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_model.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_model.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_core_model.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_model.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_linear_combination.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_linear_combination.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_linear_combination.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_linear_combination.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_linear_combination.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_parameter_handling_mixin.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_parameter_handling_mixin.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_parameter_handling_mixin.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_parameter_handling_mixin.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_parameter_handling_mixin.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_prediction.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_prediction.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_prediction.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Werror", + "-std=c++14", + "-stdlib=libstdc++", + "-frtti", + "-fexceptions", + "-Waddress", + "-Warray-bounds", + "-Wbool-operation", + "-Wcast-function-type", + "-Wchar-subscripts", + "-Wdangling-else", + "-Wignored-qualifiers", + "-Winit-self", + "-Winvalid-pch", + "-Wlogical-not-parentheses", + "-Wmemset-transposed-args", + "-Wmisleading-indentation", + "-Wmissing-field-initializers", + "-Wparentheses", + "-Wsequence-point", + "-Wshift-negative-value", + "-Wsizeof-array-div", + "-Wsizeof-pointer-div", + "-Wsizeof-pointer-memaccess", + "-Wtrigraphs", + "-Wtype-limits", + "-Wuninitialized", + "-Wunknown-pragmas", + "-Wwrite-strings", + "-Wno-error=deprecated-declarations", + "-Wno-tautological-unsigned-zero-compare", + "-Wno-stack-protector", + "-Wno-unused", + "-Wno-conversion", + "-Wno-float-conversion", + "-Wno-sign-conversion", + "-Wno-implicit-int-conversion", + "-Wno-implicit-int-float-conversion", + "-Wno-shorten-64-to-32", + "-fstack-protector", + "-c", + "tests/test_prediction.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_prediction.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/src/gmock-cardinalities.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-cardinalities.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/internal/custom/gmock-port.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-cardinalities.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/internal/gmock-internal-utils.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-cardinalities.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/gmock-cardinalities.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-cardinalities.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/internal/gmock-port.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-cardinalities.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/gmock-function-mocker.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/gmock-spec-builders.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/internal/gmock-pp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/gmock-actions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/internal/custom/gmock-matchers.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/gmock-more-actions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/gmock-matchers.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/gmock-more-matchers.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/internal/custom/gmock-generated-actions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/gmock.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/gmock-nice-strict.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/src/gmock-matchers.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-matchers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-matchers.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-matchers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-matchers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/src/gmock-spec-builders.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-spec-builders.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-spec-builders.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-spec-builders.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-spec-builders.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/src/gmock.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/src/gtest-assertion-result.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-assertion-result.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-assertion-result.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-assertion-result.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-assertion-result.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/src/gtest-death-test.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/socket_type.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/custom/gtest.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/sockaddr.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/mman.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/mman-shared.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/rpc/netdb.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest-spi.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/fcntl.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/sys/socket.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/netdb.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/asm/socket.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/asm/sockios.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/asm-generic/socket.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/mman-linux.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/asm-generic/sockios.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/in.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/netinet/in.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/linux/falloc.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/fcntl.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/socket.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/src/gtest-internal-inl.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/sys/mman.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/arpa/inet.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/netdb.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/fcntl-linux.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/src/gtest-filepath.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-filepath.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-filepath.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-filepath.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-filepath.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/src/gtest-matchers.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-matchers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-matchers.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-matchers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-matchers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/src/gtest-port.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-port.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-port.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-port.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-port.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/src/gtest-printers.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-printers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-printers.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-printers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-printers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/src/gtest-test-part.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-test-part.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-test-part.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-test-part.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-test-part.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/src/gtest-typed-test.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-typed-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-typed-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-typed-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-typed-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/src/gtest.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/csignal", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/sys/time.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/SuiteSparseQR.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/SuiteSparseQR.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Include/spqr.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/SuiteSparseQR.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/SuiteSparseQR_C.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_C.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_C.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/SuiteSparseQR_C.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_C.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Include/SuiteSparseQR_C.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_C.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_C.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/SuiteSparseQR_C.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_C.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/SuiteSparseQR_expert.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_expert.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_expert.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/SuiteSparseQR_expert.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_expert.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/SuiteSparseQR_qmult.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_qmult.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_qmult.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/SuiteSparseQR_qmult.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_qmult.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_1colamd.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_1colamd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_1colamd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_1colamd.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_1colamd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_1factor.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_1factor.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_1factor.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_1factor.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_1factor.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_1fixed.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_1fixed.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_1fixed.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_1fixed.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_1fixed.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_analyze.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_analyze.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_analyze.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_analyze.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_analyze.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_append.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_append.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_append.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_append.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_append.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_assemble.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_assemble.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_assemble.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_assemble.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_assemble.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_cpack.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_cpack.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_cpack.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_cpack.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_cpack.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_csize.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_csize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_csize.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_csize.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_csize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_cumsum.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_cumsum.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_cumsum.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_cumsum.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_cumsum.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_debug.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_debug.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_debug.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_debug.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_debug.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_factorize.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_factorize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_factorize.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_factorize.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_factorize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_fcsize.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_fcsize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_fcsize.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_fcsize.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_fcsize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_freefac.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_freefac.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_freefac.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_freefac.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_freefac.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_freenum.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_freenum.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_freenum.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_freenum.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_freenum.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_freesym.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_freesym.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_freesym.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_freesym.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_freesym.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_front.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_front.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_front.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_front.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_front.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_fsize.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_fsize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_fsize.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_fsize.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_fsize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_happly.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_happly.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_happly.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_happly.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_happly.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_happly_work.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_happly_work.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_happly_work.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_happly_work.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_happly_work.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_hpinv.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_hpinv.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_hpinv.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_hpinv.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_hpinv.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_kernel.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_kernel.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_kernel.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_kernel.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_kernel.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_larftb.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_larftb.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_larftb.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_larftb.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_larftb.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_maxcolnorm.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_maxcolnorm.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_maxcolnorm.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_maxcolnorm.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_maxcolnorm.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_panel.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_panel.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_panel.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_panel.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_panel.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_parallel.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_parallel.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_parallel.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_parallel.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_parallel.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_rconvert.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rconvert.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rconvert.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_rconvert.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rconvert.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_rcount.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rcount.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rcount.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_rcount.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rcount.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_rhpack.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rhpack.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rhpack.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_rhpack.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rhpack.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_rmap.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rmap.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rmap.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_rmap.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rmap.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_rsolve.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rsolve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rsolve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_rsolve.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rsolve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_shift.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_shift.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_shift.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_shift.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_shift.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_stranspose1.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_stranspose1.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_stranspose1.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_stranspose1.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_stranspose1.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_stranspose2.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_stranspose2.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_stranspose2.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_stranspose2.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_stranspose2.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_tol.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_tol.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_tol.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_tol.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_tol.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_trapezoidal.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_trapezoidal.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_trapezoidal.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_trapezoidal.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_trapezoidal.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_type.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_type.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_type.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_type.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_type.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/src/gmock_main.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest_main/gmock_main.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest_main/gmock_main.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock_main.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest_main/gmock_main.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/debug.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/debug.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/debug.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/debug.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/debug.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/debug.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/debug.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/debug.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/debug.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/debug.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/entropy_common.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/bits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/cet.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/zstd_deps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/huf.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/portability_macros.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/fse.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/mem.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/bitstream.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/error_private.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/../zstd_errors.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/compiler.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/error_private.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/error_private.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/error_private.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/error_private.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/error_private.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/fse_decompress.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/fse_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/pool.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/pool.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/threading.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/pool.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/pool.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/pool.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/../common/allocations.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/pool.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/../zstd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/pool.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/threading.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/threading.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/threading.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/threading.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/threading.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/xxhash.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/xxhash.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/xxhash.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/xxhash.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/xxhash.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/xxhash.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/xxhash.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/xxhash.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/xxhash.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/xxhash.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/zstd_common.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/zstd_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/cpu.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/zstd_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/zstd_trace.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/zstd_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/zstd_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/zstd_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/fse_compress.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/zstd_deps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/bits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/portability_macros.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/hist.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/fse.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/debug.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/compiler.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/bitstream.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/mem.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/../zstd_errors.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/error_private.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/hist.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/hist.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/hist.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/hist.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/hist.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/huf_compress.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/huf_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/huf.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/huf_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_compress.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../zstd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/zstd_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_compress_literals.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_lazy.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/clevels.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_ldm.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/cpu.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/xxhash.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_compress_sequences.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_compress_superblock.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstdmt_compress.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/zstd_trace.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_cwksp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_double_fast.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_fast.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_opt.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/../zstd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_compress_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/allocations.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_compress_literals.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress_literals.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress_literals.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress_literals.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress_literals.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_compress_sequences.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress_sequences.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress_sequences.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress_sequences.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress_sequences.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_compress_superblock.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress_superblock.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress_superblock.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress_superblock.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress_superblock.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_double_fast.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_double_fast.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_double_fast.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_double_fast.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_double_fast.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_fast.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_fast.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_fast.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_fast.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_fast.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_lazy.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_lazy.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_lazy.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_lazy.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_lazy.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_ldm.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ldm.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ldm.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_ldm.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ldm.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_ldm_geartab.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ldm.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ldm.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_ldm.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ldm.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_opt.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_opt.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_opt.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_opt.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_opt.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstdmt_compress.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstdmt_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstdmt_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstdmt_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstdmt_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/pool.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstdmt_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstdmt_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstdmt_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstdmt_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/threading.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstdmt_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstdmt_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstdmt_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstdmt_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/huf_decompress.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/portability_macros.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/xxhash.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/fse.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/zstd_trace.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/debug.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/zstd_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/bits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/../zstd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/../zstd_errors.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/error_private.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/cpu.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/compiler.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/zstd_deps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/bitstream.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/huf.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/mem.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/zstd_ddict.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/zstd_ddict.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../zstd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/zstd_ddict.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/zstd_ddict.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/zstd_ddict.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/allocations.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/zstd_ddict.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/zstd_decompress_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/zstd_ddict.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/zstd_decompress.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/zstd_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/zstd_decompress_block.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/zstd_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/zstd_decompress_block.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_decompress_block.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_decompress_block.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/zstd_decompress_block.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_decompress_block.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/huf_decompress_amd64.S", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xassembler-with-cpp", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress_amd64.pic.d", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress_amd64.S", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress_amd64.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/cover.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/debug.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/error_private.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/compiler.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/mem.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/../zstd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/../zstd_errors.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../zdict.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/cover.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/fse.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/portability_macros.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/zstd_deps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/huf.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/threading.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/bits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/zstd_trace.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/bitstream.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/xxhash.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/pool.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/cpu.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/zstd_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/divsufsort.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/divsufsort.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/divsufsort.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/divsufsort.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/divsufsort.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/divsufsort.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/divsufsort.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/divsufsort.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/divsufsort.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/divsufsort.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/fastcover.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/fastcover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../compress/../common/allocations.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/fastcover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../compress/../common/zstd_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/fastcover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../compress/zstd_compress_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/fastcover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../compress/../common/portability_macros.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/fastcover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../compress/../zstd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/fastcover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../compress/../common/bits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/fastcover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../compress/zstdmt_compress.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/fastcover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../compress/zstd_cwksp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/fastcover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../compress/../common/zstd_deps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/fastcover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/zdict.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zdict.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zdict.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/zdict.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zdict.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/direct/DIRect.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/direct/DIRect.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/direct/direct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/direct/DIRect.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/util/nlopt-util.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/direct/DIRect.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/direct/direct-internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/direct/DIRect.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "bazel-out/k8-fastbuild/bin/external/nlopt+/nlopt_config.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/direct/DIRect.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/direct/direct_wrap.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/direct_wrap.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/direct_wrap.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/direct/direct_wrap.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/direct_wrap.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/direct/DIRserial.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRserial.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRserial.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/direct/DIRserial.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRserial.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/direct/DIRsubrout.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRsubrout.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRsubrout.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/direct/DIRsubrout.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRsubrout.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/cdirect/cdirect.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cdirect.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cdirect.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/cdirect/cdirect.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cdirect.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/cdirect/cdirect.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cdirect.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cdirect.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/cdirect/cdirect.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cdirect.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/util/redblack.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cdirect.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cdirect.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/cdirect/cdirect.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cdirect.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/cdirect/hybrid.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/hybrid.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/hybrid.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/cdirect/hybrid.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/hybrid.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/praxis/praxis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/praxis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/praxis.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/praxis/praxis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/praxis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/praxis/praxis.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/praxis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/praxis.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/praxis/praxis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/praxis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/luksan/plis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/plis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/plis.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/luksan/plis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/plis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/luksan/luksan.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/plis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/plis.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/luksan/plis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/plis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/luksan/plip.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/plip.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/plip.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/luksan/plip.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/plip.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/luksan/pnet.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/pnet.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/pnet.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/luksan/pnet.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/pnet.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/luksan/mssubs.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mssubs.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mssubs.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/luksan/mssubs.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mssubs.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/luksan/pssubs.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/pssubs.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/pssubs.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/luksan/pssubs.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/pssubs.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/crs/crs.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/crs.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/crs.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/crs/crs.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/crs.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/crs/crs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/crs.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/crs.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/crs/crs.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/crs.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/mlsl/mlsl.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mlsl.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mlsl.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/mlsl/mlsl.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mlsl.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/mlsl/mlsl.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mlsl.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mlsl.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/mlsl/mlsl.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mlsl.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/mma/mma.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mma.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mma.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/mma/mma.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mma.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/mma/mma.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mma.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mma.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/mma/mma.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mma.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/mma/ccsa_quadratic.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ccsa_quadratic.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ccsa_quadratic.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/mma/ccsa_quadratic.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ccsa_quadratic.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/cobyla/cobyla.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cobyla.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cobyla.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/cobyla/cobyla.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cobyla.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/cobyla/cobyla.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cobyla.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cobyla.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/cobyla/cobyla.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cobyla.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/newuoa/newuoa.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/newuoa.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/newuoa.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/newuoa/newuoa.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/newuoa.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/newuoa/newuoa.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/newuoa.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/newuoa.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/newuoa/newuoa.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/newuoa.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/neldermead/nldrmd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/nldrmd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/nldrmd.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/neldermead/nldrmd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/nldrmd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/neldermead/neldermead.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/nldrmd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/nldrmd.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/neldermead/nldrmd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/nldrmd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/neldermead/sbplx.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/sbplx.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/sbplx.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/neldermead/sbplx.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/sbplx.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/auglag/auglag.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/auglag.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/auglag.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/auglag/auglag.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/auglag.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/auglag/auglag.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/auglag.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/auglag.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/auglag/auglag.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/auglag.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/bobyqa/bobyqa.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/bobyqa.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/bobyqa.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/bobyqa/bobyqa.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/bobyqa.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/bobyqa/bobyqa.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/bobyqa.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/bobyqa.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/bobyqa/bobyqa.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/bobyqa.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/isres/isres.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/isres.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/isres.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/isres/isres.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/isres.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/isres/isres.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/isres.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/isres.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/isres/isres.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/isres.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/slsqp/slsqp.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/slsqp.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/slsqp.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/slsqp/slsqp.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/slsqp.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/slsqp/slsqp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/slsqp.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/slsqp.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/slsqp/slsqp.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/slsqp.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/esch/esch.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/esch.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/esch.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/esch/esch.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/esch.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/esch/esch.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/esch.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/esch.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/esch/esch.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/esch.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/api/general.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/general.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/general.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/api/general.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/general.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/api/nlopt-internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/general.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/general.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/api/general.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/general.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/api/options.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/options.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/options.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/api/options.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/options.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/api/optimize.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/optimize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/optimize.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/api/optimize.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/optimize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/stogo.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/optimize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/optimize.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/api/optimize.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/optimize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/ags/ags.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/optimize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/optimize.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/api/optimize.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/optimize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/api/deprecated.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/deprecated.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/deprecated.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/api/deprecated.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/deprecated.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/api/f77api.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/f77api.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/f77api.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/api/f77api.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/f77api.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/api/f77funcs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/f77api.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/f77api.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/api/f77api.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/f77api.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/api/f77funcs_.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/f77api.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/f77api.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/api/f77api.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/f77api.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/util/mt19937ar.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mt19937ar.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mt19937ar.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/util/mt19937ar.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mt19937ar.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/util/sobolseq.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/sobolseq.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/sobolseq.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/util/sobolseq.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/sobolseq.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/util/soboldata.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/sobolseq.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/sobolseq.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/util/sobolseq.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/sobolseq.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/util/timer.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/timer.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/timer.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/util/timer.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/timer.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/util/stop.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/stop.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/stop.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/util/stop.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/stop.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/util/redblack.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/redblack.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/redblack.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/util/redblack.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/redblack.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/util/qsort_r.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/qsort_r.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/qsort_r.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/util/qsort_r.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/qsort_r.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/util/rescale.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/rescale.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/rescale.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/util/rescale.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/rescale.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/global.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/global.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/global.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/global.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/local.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/global.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/stogo_config.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/global.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/tools.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/global.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/linalg.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/global.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/linalg.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/linalg.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/linalg.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/linalg.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/linalg.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/local.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/local.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/local.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/local.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/local.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/stogo.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/stogo.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/stogo.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/stogo.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/stogo.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/tools.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/tools.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/tools.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/tools.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/tools.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/ags/ags.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/ags/ags.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/ags/data_types.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/ags/ags.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/ags/solver.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/ags/ags.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/ags/evolvent.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/ags/ags.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/ags/local_optimizer.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/ags/ags.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/ags/evolvent.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/evolvent.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/evolvent.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/ags/evolvent.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/evolvent.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/ags/local_optimizer.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/local_optimizer.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/local_optimizer.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/ags/local_optimizer.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/local_optimizer.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/ags/solver.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/solver.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/solver.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/ags/solver.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/solver.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/subplex/subplex.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/subplex.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/subplex.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/subplex/subplex.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/subplex.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/subplex/subplex.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/subplex.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/subplex.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/subplex/subplex.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/subplex.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/hedron_compile_commands+/print_args.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/hedron_compile_commands+/_objs/print_args/print_args.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/hedron_compile_commands+/_objs/print_args/print_args.pic.o", + "-fPIC", + "-iquote", + "external/hedron_compile_commands+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/hedron_compile_commands+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/hedron_compile_commands+/print_args.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/hedron_compile_commands+/_objs/print_args/print_args.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_amd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_amd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Include/cholmod_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_amd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_amd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_amd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Include/amd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_amd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_analyze.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_analyze.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_analyze.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_analyze.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_analyze.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_analyze.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_analyze.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_analyze.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_analyze.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_analyze.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_colamd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_colamd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_colamd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_colamd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_colamd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_colamd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_colamd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_colamd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_colamd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_colamd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/COLAMD/Include/colamd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_colamd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_colamd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_colamd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_colamd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_etree.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_etree.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_etree.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_etree.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_etree.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_etree.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_etree.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_etree.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_etree.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_etree.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_factorize.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factorize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factorize.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_factorize.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factorize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_factorize.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factorize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factorize.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_factorize.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factorize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_postorder.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_postorder.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_postorder.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_postorder.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_postorder.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_postorder.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_postorder.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_postorder.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_postorder.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_postorder.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rcond.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rcond.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rcond.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rcond.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rcond.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_rcond.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rcond.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rcond.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rcond.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rcond.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_resymbol.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_resymbol.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_resymbol.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_resymbol.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_resymbol.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_resymbol.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_resymbol.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_resymbol.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_resymbol.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_resymbol.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rowcolcounts.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowcolcounts.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowcolcounts.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rowcolcounts.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowcolcounts.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_rowcolcounts.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowcolcounts.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowcolcounts.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rowcolcounts.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowcolcounts.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rowfac.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rowfac.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/t_cholmod_rowfac.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rowfac.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_rowfac.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rowfac.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Include/cholmod_template.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rowfac.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_solve.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_solve.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_solve.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_solve.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/t_cholmod_lsolve.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_solve.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/t_cholmod_solve.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_solve.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/t_cholmod_ltsolve.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_solve.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_spsolve.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_spsolve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_spsolve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_spsolve.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_spsolve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_spsolve.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_spsolve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_spsolve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_spsolve.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_spsolve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_aat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_aat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_aat.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_aat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_aat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_aat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_aat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_aat.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_aat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_aat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_add.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_add.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_add.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_add.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_add.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_add.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_add.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_add.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_add.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_add.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_band.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_band.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_band.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_band.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_band.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_band.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_band.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_band.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_band.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_band.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_change_factor.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_change_factor.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_change_factor.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_change_factor.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_change_factor.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_change_factor.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_change_factor.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_change_factor.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_change_factor.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_change_factor.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/t_cholmod_change_factor.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_change_factor.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_change_factor.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_change_factor.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_change_factor.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_common.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_common.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_common.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_common.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_complex.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_complex.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_complex.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_complex.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_complex.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_complex.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_complex.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_complex.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_complex.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_complex.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_copy.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_copy.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_copy.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_copy.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_copy.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_copy.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_copy.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_copy.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_copy.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_copy.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_dense.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_dense.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_dense.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_dense.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_dense.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_dense.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_dense.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_dense.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_dense.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_dense.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/t_cholmod_dense.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_dense.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_dense.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_dense.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_dense.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_error.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_error.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_error.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_error.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_error.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_error.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_error.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_error.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_error.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_error.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_factor.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factor.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factor.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_factor.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factor.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_factor.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factor.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factor.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_factor.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factor.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_memory.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_memory.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_memory.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_memory.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_memory.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_memory.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_memory.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_memory.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_memory.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_memory.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_sparse.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sparse.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sparse.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_sparse.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sparse.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_sparse.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sparse.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sparse.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_sparse.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sparse.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_transpose.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_transpose.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_transpose.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_transpose.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_transpose.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/t_cholmod_transpose.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_transpose.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_transpose.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_transpose.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_transpose.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_transpose.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_transpose.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_transpose.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_transpose.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_transpose.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_triplet.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_triplet.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_triplet.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_triplet.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_triplet.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/t_cholmod_triplet.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_triplet.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_triplet.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_triplet.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_triplet.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_triplet.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_triplet.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_triplet.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_triplet.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_triplet.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_version.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_version.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_version.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_version.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_version.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_version.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_version.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_version.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_version.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_version.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_drop.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_drop.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_drop.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_drop.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_drop.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_drop.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_drop.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_drop.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_drop.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_drop.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_horzcat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_horzcat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_horzcat.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_horzcat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_horzcat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_horzcat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_horzcat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_horzcat.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_horzcat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_horzcat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_norm.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_norm.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_norm.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_norm.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_norm.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_norm.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_norm.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_norm.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_norm.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_norm.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_scale.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_scale.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_scale.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_scale.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_scale.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_scale.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_scale.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_scale.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_scale.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_scale.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_sdmult.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sdmult.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sdmult.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_sdmult.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sdmult.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/t_cholmod_sdmult.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sdmult.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sdmult.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_sdmult.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sdmult.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_sdmult.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sdmult.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sdmult.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_sdmult.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sdmult.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_ssmult.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ssmult.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ssmult.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_ssmult.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ssmult.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_ssmult.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ssmult.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ssmult.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_ssmult.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ssmult.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_submatrix.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_submatrix.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_submatrix.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_submatrix.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_submatrix.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_submatrix.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_submatrix.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_submatrix.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_submatrix.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_submatrix.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_symmetry.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_symmetry.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_symmetry.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_symmetry.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_symmetry.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_symmetry.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_symmetry.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_symmetry.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_symmetry.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_symmetry.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_vertcat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_vertcat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_vertcat.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_vertcat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_vertcat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_vertcat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_vertcat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_vertcat.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_vertcat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_vertcat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Modify/cholmod_l_rowadd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowadd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowadd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Modify/cholmod_l_rowadd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowadd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Modify/cholmod_rowadd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowadd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowadd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Modify/cholmod_l_rowadd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowadd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Modify/cholmod_l_rowdel.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowdel.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowdel.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Modify/cholmod_l_rowdel.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowdel.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Modify/cholmod_rowdel.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowdel.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowdel.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Modify/cholmod_l_rowdel.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowdel.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Modify/cholmod_l_updown.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Modify/cholmod_l_updown.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Modify/t_cholmod_updown_numkr.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Modify/cholmod_l_updown.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Modify/cholmod_updown.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Modify/cholmod_l_updown.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Modify/t_cholmod_updown.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Modify/cholmod_l_updown.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_l_camd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_camd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_camd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_camd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_camd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_camd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_camd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_camd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_camd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_camd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Include/camd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_camd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_camd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_camd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_camd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_l_ccolamd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ccolamd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ccolamd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_ccolamd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ccolamd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CCOLAMD/Include/ccolamd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ccolamd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ccolamd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_ccolamd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ccolamd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_ccolamd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ccolamd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ccolamd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_ccolamd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ccolamd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_l_csymamd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_csymamd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_csymamd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_csymamd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_csymamd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_csymamd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_csymamd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_csymamd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_csymamd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_csymamd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_l_nesdis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_nesdis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_nesdis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_nesdis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_nesdis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_nesdis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_nesdis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_nesdis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_nesdis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_nesdis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_macros.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_externs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_mkutils.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/setjmp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_arch.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_mkpqueue2.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_defs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_mkrandom.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include/metis.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_struct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_mkblas.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_mkmemory.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/GKlib.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_mksort.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_proto.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_metis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_getopt.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_mkpqueue.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/omp.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/refine.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mmd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/error.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/gklib_rename.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/random.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/fkvkselect.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/kmetis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/defs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/balance.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/proto.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/gklib.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/kwayfm.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/util.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/graph.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/rename.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/fortran.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/compress.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/bucketsort.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/coarsen.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/wspace.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mincover.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/sfm.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/util.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/options.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/fm.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/contig.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mcutil.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/debug.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/separator.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/auxapi.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/evaluate.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/minconn.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/ometis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/timing.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/mcore.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/blas.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/memory.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/srefine.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/gklib_defs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/struct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/kwayrefine.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/metislib.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/initpart.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/parmetis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/stat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/macros.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/sort.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/pmetis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_numeric.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_numeric.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_numeric.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_numeric.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_numeric.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Supernodal/t_cholmod_super_numeric.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_numeric.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_numeric.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_numeric.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_numeric.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Supernodal/cholmod_super_numeric.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_numeric.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_numeric.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_numeric.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_numeric.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_solve.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_solve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_solve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_solve.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_solve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Supernodal/t_cholmod_super_solve.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_solve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_solve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_solve.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_solve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Supernodal/cholmod_super_solve.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_solve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_solve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_solve.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_solve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_symbolic.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_symbolic.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_symbolic.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_symbolic.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_symbolic.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Supernodal/cholmod_super_symbolic.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_symbolic.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_symbolic.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_symbolic.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_symbolic.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-g0", + "-O3", + "-D_FORTIFY_SOURCE=1", + "-ffunction-sections", + "-fdata-sections", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.d", + "-frandom-seed=bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o", + "-fPIC", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools", + "-g0", + "-g0", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "-o", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/wchar2.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-g0", + "-O3", + "-D_FORTIFY_SOURCE=1", + "-ffunction-sections", + "-fdata-sections", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.d", + "-frandom-seed=bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o", + "-fPIC", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools", + "-g0", + "-g0", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "-o", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/select2.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-g0", + "-O3", + "-D_FORTIFY_SOURCE=1", + "-ffunction-sections", + "-fdata-sections", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.d", + "-frandom-seed=bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o", + "-fPIC", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools", + "-g0", + "-g0", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "-o", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/stdlib.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-g0", + "-O3", + "-D_FORTIFY_SOURCE=1", + "-ffunction-sections", + "-fdata-sections", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.d", + "-frandom-seed=bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o", + "-fPIC", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools", + "-g0", + "-g0", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "-o", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/stdio2.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-g0", + "-O3", + "-D_FORTIFY_SOURCE=1", + "-ffunction-sections", + "-fdata-sections", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.d", + "-frandom-seed=bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o", + "-fPIC", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools", + "-g0", + "-g0", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "-o", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-g0", + "-O3", + "-D_FORTIFY_SOURCE=1", + "-ffunction-sections", + "-fdata-sections", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.d", + "-frandom-seed=bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o", + "-fPIC", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools", + "-g0", + "-g0", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "-o", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/strings_fortified.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-g0", + "-O3", + "-D_FORTIFY_SOURCE=1", + "-ffunction-sections", + "-fdata-sections", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.d", + "-frandom-seed=bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o", + "-fPIC", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools", + "-g0", + "-g0", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "-o", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/string_fortified.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-g0", + "-O3", + "-D_FORTIFY_SOURCE=1", + "-ffunction-sections", + "-fdata-sections", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.d", + "-frandom-seed=bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o", + "-fPIC", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools", + "-g0", + "-g0", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "-o", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/stdio.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-g0", + "-O3", + "-D_FORTIFY_SOURCE=1", + "-ffunction-sections", + "-fdata-sections", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.d", + "-frandom-seed=bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o", + "-fPIC", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools", + "-g0", + "-g0", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "-o", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-g0", + "-O3", + "-D_FORTIFY_SOURCE=1", + "-ffunction-sections", + "-fdata-sections", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.d", + "-frandom-seed=bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.o", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools", + "-g0", + "-g0", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "-o", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/adler32.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/adler32.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/zutil.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/adler32.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/zlib.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/adler32.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/zconf.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/adler32.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/compress.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/compress.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/crc32.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/crc32.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/crc32.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/crc32.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/crc32.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/crc32.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/crc32.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/crc32.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/crc32.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/crc32.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/deflate.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/deflate.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/deflate.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/deflate.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/deflate.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/deflate.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/deflate.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/deflate.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/deflate.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/deflate.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/gzclose.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzclose.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzclose.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/gzclose.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzclose.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/gzguts.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzclose.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzclose.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/gzclose.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzclose.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/gzlib.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzlib.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzlib.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/gzlib.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzlib.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/gzread.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzread.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzread.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/gzread.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzread.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/gzwrite.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzwrite.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzwrite.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/gzwrite.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzwrite.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/infback.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/infback.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/inflate.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/infback.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/inffixed.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/infback.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/inffast.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/infback.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/inftrees.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/infback.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/inffast.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/inffast.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/inffast.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/inffast.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/inffast.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/inflate.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/inflate.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/inflate.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/inflate.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/inflate.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/inftrees.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/inftrees.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/inftrees.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/inftrees.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/inftrees.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/trees.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/trees.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/trees.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/trees.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/trees.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/trees.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/trees.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/trees.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/trees.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/trees.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/uncompr.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/uncompr.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/uncompr.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/uncompr.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/uncompr.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/zutil.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/zutil.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/zutil.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/zutil.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/zutil.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SuiteSparse_config/SuiteSparse_config.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/suitesparseconfig/SuiteSparse_config.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/suitesparseconfig/SuiteSparse_config.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/SuiteSparse_config/SuiteSparse_config.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/suitesparseconfig/SuiteSparse_config.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CCOLAMD/Source/ccolamd_l.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/ccolamd/ccolamd_l.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/ccolamd/ccolamd_l.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CCOLAMD/Source/ccolamd_l.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/ccolamd/ccolamd_l.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CCOLAMD/Source/ccolamd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/ccolamd/ccolamd_l.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/ccolamd/ccolamd_l.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CCOLAMD/Source/ccolamd_l.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/ccolamd/ccolamd_l.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/auxapi.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/auxapi.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/auxapi.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/auxapi.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/auxapi.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/balance.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/balance.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/balance.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/balance.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/balance.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/bucketsort.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/bucketsort.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/bucketsort.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/bucketsort.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/bucketsort.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/checkgraph.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/checkgraph.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/checkgraph.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/checkgraph.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/checkgraph.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/coarsen.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/coarsen.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/coarsen.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/coarsen.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/coarsen.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/compress.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/compress.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/contig.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/contig.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/contig.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/contig.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/contig.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/debug.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/debug.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/debug.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/debug.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/debug.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/fm.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/fm.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/fm.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/fm.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/fm.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/fortran.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/fortran.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/fortran.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/fortran.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/fortran.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/frename.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/frename.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/frename.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/frename.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/frename.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/gklib.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/gklib.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/gklib.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/gklib.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/gklib.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/graph.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/graph.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/graph.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/graph.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/graph.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/initpart.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/initpart.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/initpart.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/initpart.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/initpart.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/kmetis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/kmetis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/kmetis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/kmetis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/kmetis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/kwayfm.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/kwayfm.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/kwayfm.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/kwayfm.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/kwayfm.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/kwayrefine.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/kwayrefine.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/kwayrefine.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/kwayrefine.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/kwayrefine.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mcutil.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mcutil.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mcutil.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mcutil.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mcutil.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mesh.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mesh.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mesh.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mesh.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mesh.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/meshpart.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/meshpart.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/meshpart.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/meshpart.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/meshpart.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/minconn.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/minconn.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/minconn.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/minconn.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/minconn.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mincover.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mincover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mincover.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mincover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mincover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mmd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mmd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mmd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mmd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mmd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/ometis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/ometis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/ometis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/ometis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/ometis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/options.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/options.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/options.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/options.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/options.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/parmetis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/parmetis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/parmetis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/parmetis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/parmetis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/pmetis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/pmetis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/pmetis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/pmetis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/pmetis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/refine.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/refine.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/refine.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/refine.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/refine.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/separator.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/separator.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/separator.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/separator.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/separator.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/sfm.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/sfm.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/sfm.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/sfm.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/sfm.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/srefine.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/srefine.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/srefine.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/srefine.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/srefine.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/stat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/stat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/stat.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/stat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/stat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/timing.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/timing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/timing.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/timing.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/timing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/util.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/util.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/util.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/util.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/util.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/wspace.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/wspace.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/wspace.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/wspace.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/wspace.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l1.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l1.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l1.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l1.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l1.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_1.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l1.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l1.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l1.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l1.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Include/amd_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l1.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l1.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l1.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l1.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l2.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l2.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l2.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l2.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l2.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_2.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l2.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l2.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l2.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l2.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l_aat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_aat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_aat.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_aat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_aat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_aat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_aat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_aat.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_aat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_aat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l_control.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_control.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_control.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_control.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_control.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_control.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_control.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_control.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_control.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_control.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l_defaults.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_defaults.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_defaults.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_defaults.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_defaults.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_defaults.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_defaults.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_defaults.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_defaults.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_defaults.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l_dump.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_dump.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_dump.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_dump.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_dump.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_dump.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_dump.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_dump.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_dump.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_dump.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l_info.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_info.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_info.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_info.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_info.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_info.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_info.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_info.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_info.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_info.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l_order.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_order.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_order.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_order.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_order.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_order.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_order.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_order.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_order.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_order.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l_post_tree.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_post_tree.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_post_tree.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_post_tree.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_post_tree.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_post_tree.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_post_tree.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_post_tree.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_post_tree.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_post_tree.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l_postorder.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_postorder.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_postorder.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_postorder.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_postorder.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_postorder.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_postorder.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_postorder.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_postorder.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_postorder.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l_preprocess.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_preprocess.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_preprocess.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_preprocess.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_preprocess.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_preprocess.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_preprocess.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_preprocess.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_preprocess.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_preprocess.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l_valid.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_valid.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_valid.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_valid.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_valid.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_valid.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_valid.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_valid.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_valid.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_valid.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l1.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l1.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l1.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l1.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l1.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_1.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l1.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l1.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l1.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l1.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Include/camd_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l1.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l1.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l1.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l1.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l2.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l2.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l2.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l2.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l2.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_2.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l2.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l2.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l2.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l2.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l_aat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_aat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_aat.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_aat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_aat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_aat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_aat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_aat.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_aat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_aat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l_control.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_control.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_control.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_control.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_control.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_control.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_control.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_control.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_control.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_control.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l_defaults.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_defaults.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_defaults.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_defaults.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_defaults.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_defaults.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_defaults.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_defaults.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_defaults.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_defaults.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l_dump.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_dump.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_dump.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_dump.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_dump.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_dump.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_dump.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_dump.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_dump.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_dump.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l_info.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_info.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_info.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_info.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_info.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_info.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_info.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_info.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_info.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_info.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l_order.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_order.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_order.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_order.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_order.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_order.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_order.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_order.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_order.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_order.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l_postorder.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_postorder.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_postorder.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_postorder.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_postorder.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_postorder.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_postorder.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_postorder.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_postorder.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_postorder.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l_preprocess.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_preprocess.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_preprocess.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_preprocess.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_preprocess.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_preprocess.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_preprocess.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_preprocess.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_preprocess.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_preprocess.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l_valid.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_valid.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_valid.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_valid.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_valid.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_valid.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_valid.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_valid.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_valid.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_valid.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/COLAMD/Source/colamd_l.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/colamd/colamd_l.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/colamd/colamd_l.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/COLAMD/Source/colamd_l.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/colamd/colamd_l.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/COLAMD/Source/colamd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/colamd/colamd_l.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/colamd/colamd_l.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/COLAMD/Source/colamd_l.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/colamd/colamd_l.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/b64.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/b64.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/b64.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/b64.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/b64.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/blas.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/blas.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/blas.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/blas.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/blas.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/csr.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/csr.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/csr.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/csr.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/csr.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/error.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/error.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/error.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/error.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/error.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/evaluate.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/evaluate.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/evaluate.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/evaluate.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/evaluate.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/fkvkselect.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/fkvkselect.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/fkvkselect.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/fkvkselect.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/fkvkselect.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/fs.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/fs.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/fs.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/fs.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/fs.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/getopt.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/getopt.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/getopt.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/getopt.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/getopt.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gkregex.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/gkregex.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/gkregex.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gkregex.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/gkregex.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/htable.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/htable.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/htable.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/htable.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/htable.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/io.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/io.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/io.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/io.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/io.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/itemsets.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/itemsets.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/itemsets.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/itemsets.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/itemsets.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/mcore.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/mcore.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/mcore.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/mcore.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/mcore.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/memory.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/memory.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/memory.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/memory.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/memory.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/omp.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/omp.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/omp.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/omp.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/omp.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/pdb.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/pdb.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/pdb.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/pdb.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/pdb.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/pqueue.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/pqueue.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/pqueue.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/pqueue.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/pqueue.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/random.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/random.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/random.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/random.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/random.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/rw.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/rw.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/rw.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/rw.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/rw.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/seq.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/seq.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/seq.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/seq.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/seq.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/sort.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/sort.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/sort.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/sort.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/sort.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/tokenizer.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/tokenizer.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/tokenizer.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/tokenizer.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/tokenizer.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/util.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/util.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/util.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/util.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/util.pic.o" + ], + "directory": "/home/matt/work/albatross" + } +] \ No newline at end of file diff --git a/compile_commands.before.json b/compile_commands.before.json new file mode 100644 index 00000000..60e00c0a --- /dev/null +++ b/compile_commands.before.json @@ -0,0 +1,343127 @@ +[ + { + "file": "tests/test_samplers.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/linux/posix_types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/hashtable.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/uio_lim.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/gnu/stubs-64.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/arch/SSE/Complex.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/limits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/parse_numbers.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/iscanonical.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_column_dfs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/GP", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/allocated_ptr.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/measurement.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/samplers/ensemble.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/polynomials.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stringfwd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_timespec.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_timeval.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/mathcalls.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/ParametrizedLine.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cxxabi.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/gthr.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/details/error_handling.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/models/null_model.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/evaluation/model_metrics.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Include/cholmod.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/ostream.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/time_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_relax_snode.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/Homogeneous.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/memoryfwd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/eigen/serializable_ldlt.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseCwiseUnaryOp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_pruneL.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/NumTraits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/iostream", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_multimap.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/details/static_object.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/covariance_function.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/flt-eval-method.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cstddef", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cwchar", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseDot.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Swap.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/utils/eigen_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/basic_ios.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/waitflags.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/indexing/subset.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/TriangularSolver.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/indexing/filter.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Transpose.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/Common", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/arch/CUDA/PacketMathHalf.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/../stream.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/evaluation/prediction_metrics.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseDiagonalProduct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/wchar.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/quoted_string.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/inttypes.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/LU/Determinant.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/types/string.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/CsvUtils", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/map", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/backward/auto_ptr.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/CompressedStorage.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/QR/CompleteOrthogonalDecomposition.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/FILE.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/locale_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/details/helpers.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/timesize.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest-assertion-result.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/asm-generic/types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/gtest-port-arch.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/misc/Image.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseDenseProduct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseColEtree.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/models/ransac_gp.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/access.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/evaluation/folds.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/priors.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseRedux.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/parameters.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/Core", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/dataset.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/math.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/ReturnByValue.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Reverse.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/functors/AssignmentFunctors.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/locale_classes.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/streambuf.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/arch/CUDA/Complex.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/./RealSchur.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/stream.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/unordered_map.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCholesky/SimplicialCholesky.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/eigen.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SVD/SVDBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/MatrixBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/stats/ks_test.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseVector.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/locale_classes.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/./RealQZ.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/allocator.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ext/atomicity.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseMap.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/debug/assertions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/set", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/fp-logb.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/Sparse", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ext/concurrence.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/sys/cdefs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/sys/wait.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/backward/binders.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/statx.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/model.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/nugget.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/uses_allocator.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/atomic_lockfree_defines.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/mean_function.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/linalg/Block", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/functors/TernaryFunctors.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/optional", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/cxxabi_forced.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/traits.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/queue", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/sigaction.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Core", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/__mbstate_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/fit_model.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/endian.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/unistd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/samplers/state.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/siginfo-consts.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/archives/json.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/AssignEvaluator.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Stride.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/types/base_class.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/linux/limits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/arch/Default/Settings.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/Tridiagonalization.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cctype", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/errno.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/CoreEvaluators.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/CwiseUnaryView.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest_pred_impl.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/stdint-uintn.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/pthread.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/uniform_int_dist.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/DenseCoeffsBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/../plugins/ArrayCwiseBinaryOps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/libm-simd-decl-stubs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Jacobi/Jacobi.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/arch/CUDA/Half.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/OrderingMethods/Eigen_Colamd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/iosfwd", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Include/SuiteSparseQR.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/linux/stat.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/IterativeLinearSolvers", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/iterator_concepts.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/ForwardDeclarations", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/gtest-string.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/Jacobi", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/variant+/include/mapbox/recursive_wrapper.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/SparseGP", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/wint_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/ss_flags.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/algorithmfwd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/models/least_squares.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/VectorwiseOp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_Utils.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/gtest-param-util.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/__sigval_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/evaluation/cross_validation_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Ref.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ostream", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/linux/types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest-printers.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_list.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/gzip_hpp+/include/gzip/compress.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/GlobalFunctions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseView.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/sched.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/locale_conv.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/type_traits", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/EulerAngles.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/long-double.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/functors/UnaryFunctors.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/functional_hash.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/mm_malloc.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/stdint-intn.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/tuple", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/suitesparse.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/AmbiVector.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/details/traits.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/stats/gauss_legendre.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/priors.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/thread", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/ostreamwrapper.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/LU", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/char_traits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/cpu_defines.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/QR/ColPivHouseholderQR.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/gzip_hpp+/include/gzip/config.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/parameters.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stream_iterator.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/functors/NullaryFunctors.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/sstream.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/Constants.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/Cholesky", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ratio", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/CwiseBinaryOp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/../rapidjson.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/Meta.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/time.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCholesky/../Core/util/NonMPL2.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/istream.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/streambuf", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/asm/errno.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/NestByValue.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/arch/SSE/PacketMath.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/meta.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/indexing/unique.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/TriangularMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/posix2_lim.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_deque.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/concatenate.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/fit_model.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/rapidjson.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SVD/JacobiSVD.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/string.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/alloc_traits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/predefined_ops.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/linalg/Utils", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/samplers/initialization.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/noise.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/MapBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/details/typecast.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/typesizes.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/alloca.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest-matchers.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseBlock.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/Umeyama.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_iterator_base_funcs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseCompressedBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_uninitialized.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Distribution", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Householder/BlockHouseholder.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest-test-part.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLUImpl.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_heap.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/timer_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ext/string_conversions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/gnu/stubs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/stdio_lim.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/gthr-default.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/climits", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/indexing/block.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/regex.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_algobase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/new", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/functexcept.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/arch/SSE/TypeCasting.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/complex", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/streambuf_iterator.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/stdexcept", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/mathcalls-helper-functions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../src/utils/csv_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/linalg/../src/linalg/block_diagonal.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/zstd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Redux.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/details/polymorphic_impl_fwd.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/siginfo_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/utils/map_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/c++config.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/error/error.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/algorithm", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/custom/gtest-port.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/../plugins/MatrixCwiseBinaryOps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_bvector.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/SparseCore", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Solve.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/cpu-set.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/indexing/apply.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/QR/HouseholderQR.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/dataset.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/GenericPacketMath.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/LU/arch/Inverse_SSE.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/../plugins/MatrixCwiseUnaryOps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseTranspose.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_tempbuf.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/istream", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Inverse.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidxml/rapidxml_print.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/LeastSquares", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/Dense", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/functors/StlFunctors.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/atomic_word.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/allocators.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/distance_metrics.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/variant", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Householder/HouseholderSequence.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/strfunc.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/utils/random_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/floatn-common.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/random.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/atomic_futex.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/representations.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_panel_dfs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/stdlib-float.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/stdc-predef.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/asm-generic/bitsperlong.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../src/utils/random_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/asm/posix_types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/gtest-type-util.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_algo.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/mathcalls-narrow.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/uintn-identity.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/asm/bitsperlong.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/CommaInitializer.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/indexing/traits.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/iomanip", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/encodings.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/posix_opt.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/traits.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/sig_atomic_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/evaluation/differential_entropy.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/variant+/include/mapbox/variant.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparsePermutation.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/VectorBlock.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/call_trace.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/concept_check.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/EigenSolver.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/atomic", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/details/method_inspection_macros.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/MathFunctions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/c++locale.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/nested_exception.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest-death-test.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/MathFunctionsImpl.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseFuzzy.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/exception", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/TriangularMatrixMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/math-vector.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/signal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/../plugins/CommonCwiseUnaryOps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/__sigset_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_sigstack.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/endian.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_tree.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/waitstatus.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/./HessenbergDecomposition.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/AngleAxis.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_utils.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/sys/ucontext.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/NoAlias.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/ReenableStupidWarnings.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseSelfAdjointView.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/details/unused.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/document.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/stddef.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/linalg/block_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/libc-header-start.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/condition_variable", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/models/conditional_gaussian.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/transformed_distribution.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/AsyncUtils", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/variant+/include/mapbox/variant_visitor.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/NullModel", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/locale.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseAssign.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/utility", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../src/utils/async_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Diagonal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ciso646", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/signal_ext.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/random.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/basic_string.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/span", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/range_access.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/strtod.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseSparseProductWithPruning.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/unique_ptr.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/../plugins/MatrixCwiseBinaryOps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/ctype_inline.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/SolverBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/GeneralMatrixVector.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/ComplexSchur.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/opt_random.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/siginfo-consts-arch.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cstring", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/linalg/../Common", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/debug/debug.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/MappedSparseMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/asm/posix_types_64.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/gzip_hpp+/include/gzip/decompress.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/../plugins/CommonCwiseBinaryOps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/dtoa.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_models.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/utils/vector_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/locale_facets.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Transpositions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/macros.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/ThreadPool.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/TriangularMatrixVector.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/std_function.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/exception_ptr.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cstdint", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/memorystream.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/chrono", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/atomic_base.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/ForwardDeclarations.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/select.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/asm-generic/posix_types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Random.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/evaluation/cross_validation.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/../plugins/CommonCwiseUnaryOps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/iterator", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/linalg/../src/linalg/print_eigen_directions.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/wordsize.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_multiset.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/custom/gtest-printers.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/Rotation2D.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/XprHelper.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Select.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_queue.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/cxxabi_tweaks.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/StaticAssert.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_iterator.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ext/aligned_buffer.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/basic_ios.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/gtest-port.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/arch/Geometry_SSE.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/threadpool+/ThreadPool.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/LU/InverseImpl.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/unistd_ext.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/sigevent_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/__locale_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/gtest-internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/functors/BinaryFunctors.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/locale_facets_nonio.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_iterator_base_types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/wchar.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_set.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Array.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/unordered_map", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/QR", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest-param-test.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/AlignedBox.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/mock_model.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/QR/FullPivHouseholderQR.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cstdio", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/gtest-death-test-internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/../plugins/ArrayCwiseUnaryOps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Stats", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/ctype_base.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/../plugins/CommonCwiseBinaryOps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/pthreadtypes.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/asm-generic/int-ll64.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SuiteSparse_config/SuiteSparse_config.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/unique_lock.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Fuzzy.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SVD/UpperBidiagonalization.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/details/util.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/wctype.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/confname.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/types/map.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/itoa.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/radial.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/SelfadjointMatrixMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/distribution.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/evaluation/traits.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_stack.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/SparseLU", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/floatn.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/TriangularSolverMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/shared_ptr_base.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/ptr_traits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/errno.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/error_constants.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/any", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/strings.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/GeneralMatrixMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/OrderingMethods/Ordering.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseQR/SparseQR.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/pow10.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/models/gp.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/fstream", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/codecvt.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/limits", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Householder/Householder.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_panel_bmod.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Evaluation", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/getopt_posix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/list", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/stack", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseProduct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_tm.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/random", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/exception_defines.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_pair.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_function.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/ios_base.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/Translation.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/signum.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/OrderingMethods/../Core/util/NonMPL2.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/archives/portable_binary.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/fp-fast.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/../plugins/BlockMethods.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/array", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/deque", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Product.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/DiagonalMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseCwiseBinaryOp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/error_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/__FILE.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/SolveTriangular.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/SelfadjointProduct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/Parallelizer.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/PermutationMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/unordered_set", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Dot.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/Householder", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/sys/types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/RealQZ.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/math.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/callers.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_itimerspec.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/SparseQR", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Cholesky/LDLT.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/future", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_vector.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/sigval_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/cereal.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/ieee754.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/locale.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/messages_members.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/CholmodSupport/CholmodSupport.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/string_view", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest_prod.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest-typed-test.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/basic_file.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/arch/CUDA/TypeCasting.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/mmintrin.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/LU/FullPivLU.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/misc/RealSvd2x2.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/parameter_handling_mixin.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/CwiseTernaryOp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/RandomUtils", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/environments.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/../plugins/MatrixCwiseUnaryOps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_raw_storage_iter.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Samplers", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/distribution.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/__stddef_max_align_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/Quaternion.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/stdlib.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseMatrixBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/evaluation/likelihood.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_relops.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/siginfo-arch.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/details/traits.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/reader.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/wctype-wchar.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/mbstate_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/typeindex", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/shared_ptr.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/DenseBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/endianness.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/SelfadjointMatrixVector.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/Geometry", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Dataset", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/eigen/serializable_spqr.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/sched.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/utils/compress.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest-message.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/linalg/../src/linalg/spqr_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/unordered_set.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/ostream_insert.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/locale_facets_nonio.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ext/type_traits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ext/new_allocator.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/BandMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/SVD", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/diyfp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/fstream.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_construct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/linux/errno.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/encodedstream.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_sched_param.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/sys/stat.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/MKL_support.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/models/ransac.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/SelfadjointRank2Update.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/CovarianceFunctions", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/OrthoMethods.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/models/sparse_gp.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/assert.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/istreamwrapper.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/concepts", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/local_lim.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/__fpos_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/asm-generic/errno.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/compare", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/HessenbergDecomposition.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/EigenBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/byteswap.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/posix1_lim.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/stdio.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/prettywriter.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/linear_combination.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/parameter_macros.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_column_bmod.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/struct_mutex.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/StableNorm.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/time_members.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/ArrayBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Indexing", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_gemm_kernel.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/BlasUtil.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/sigcontext.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_pivotL.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/linux/stddef.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/SelfAdjointView.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/c++io.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/xmmintrin.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Cholesky/LLT.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/samplers/callbacks.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/libintl.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/error/../rapidjson.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/move.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_statx.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/TriangularSolverVector.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/prediction.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/types/common.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/CwiseUnaryOp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/stdint.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/indexing/group_by.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/setjmp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/time.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Replicate.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/declarations.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/erase_if.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/functional", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_numeric.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/mutex", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/Scaling.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Assign.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/stl_map.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/linalg/../src/linalg/block_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/__fpos64_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/ArrayWrapper.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/sigevent-consts.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../Common", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/linalg/../src/linalg/qr_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/IO.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Map.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/cxxabi_init_exception.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/c++allocator.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/timex.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/ctype.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/hashtable_policy.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/linalg/../src/linalg/block_symmetric.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/stdlib.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/sstream", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/GeneralBlockPanelKernel.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/std_mutex.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/signum-generic.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/clock_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/GeneralProduct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/RotationBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/DenseStorage.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/../allocators.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/covariance_functions/scaling_function.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cmath", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/postypes.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/CwiseNullaryOp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/types/concepts/pair_associative_container.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/gtest-filepath.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/cookie_io_functions_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/indexing/declarations.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ctime", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/biginteger.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/DisableStupidWarnings.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/hash_bytes.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/limits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/emmintrin.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/Eigenvalues", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/stdint.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidxml/rapidxml.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/xopen_lim.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/shared_ptr_atomic.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Visitor.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseTriangularView.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_statx_timestamp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/../plugins/BlockMethods.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseRef.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/SPQRSupport", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cerrno", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/cpp_type_traits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/typeinfo", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/ranges_uninitialized.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/numeric", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/exception.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/Transform.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/statx-generic.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/deque.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cwctype", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/archives/xml.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/traits.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/stats/chi_squared.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/types/vector.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/refwrap.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/vector.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cstdlib", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/float.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/basic_string.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/stack.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Ransac", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseUtil.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/range_cmp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/stats/gaussian.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/arch/SSE/MathFunctions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/sigthread.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/DiagonalProduct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/ProductEvaluators.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/vector", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/OrderingMethods", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/PlainObjectBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/base64.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/sys/select.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/std_abs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/SelfCwiseBinaryOp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/archives/binary.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/stdarg.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/sys_errlist.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/stack_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseSolverBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/struct_rwlock.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/sigstack.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/invoke.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/SparseCholesky", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/./Tridiagonalization.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ios", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/thread-shared-types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Block.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/./ComplexSchur.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Include/SuiteSparseQR_definitions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_kernel_bmod.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/system_error", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/OrderingMethods/Amd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/memory", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/../src/cereal/variant.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/clocale", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/clockid_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/locale", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/string", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Geometry/Hyperplane.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/Macros.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseCore/SparseMatrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/internal/swap.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/stdbool.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/cassert", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/locale_facets.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/features.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/getopt_core.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/CoreIterators.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Common", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/writer.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/stats/incomplete_gamma.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ext/alloc_traits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/time64.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/Matrix.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/version", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_Structs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/x86_64-linux-gnu/c++/10/bits/os_defines.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/localefwd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/ConditionEstimator.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/stat.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/util/Memory.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/inttypes.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/misc/Kernel.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/asm/types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_FILE.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/RealSchur.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/cereal+/include/cereal/external/rapidjson/stringbuffer.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/asm-generic/errno-base.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../serialize/Core", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SparseLU/SparseLU_Memory.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/SVD/BDCSVD.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/list.tcc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Eigenvalues/ComplexEigenSolver.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/bits/charconv.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/ext/numeric_traits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/initializer_list", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/core/model.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/sigset_t.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/LU/PartialPivLU.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/eigen+/Eigen/src/Core/BooleanRedux.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_samplers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-samplers/test_samplers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_evaluate.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_evaluate.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_evaluate.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_evaluate.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_evaluate.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_model_metrics.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_model_metrics.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/tune/greedy_tuner.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_model_metrics.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/tune/finite_difference.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_model_metrics.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Tune", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_model_metrics.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/tune/tune.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_model_metrics.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/tune/tuning_metrics.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_model_metrics.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-evaluation/test_model_metrics.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_tune.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_tune.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-tune/test_tune.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_serialize.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/priors.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/serializable_ldlt.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/LeastSquares", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/serializable_spqr.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/eigen.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/parameters.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/least_squares.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/ThreadPool.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/traits.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_serialize.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/suitesparse.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/dataset.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/fit_model.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/ransac.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/block_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/distribution.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/representations.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/Core", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/gp.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/Common", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/GP", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/Ransac", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/model.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/serialize/../src/cereal/variant.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serialize.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serialize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_serializable_ldlt.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serializable_ldlt.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serializable_ldlt.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_serializable_ldlt.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-serialization/test_serializable_ldlt.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_async_utils.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_async_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_async_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_async_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_async_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_block_utils.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_block_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_block_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_block_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_block_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_compression.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_compression.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_compression.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_compression.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_compression.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_csv_utils.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_csv_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_csv_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_csv_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_csv_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/utils/csv_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_csv_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_csv_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_csv_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_csv_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/fast-cpp-csv-parser+/csv.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_csv_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_csv_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_csv_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_csv_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_eigen_utils.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_eigen_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_eigen_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_eigen_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_eigen_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_linalg_utils.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_linalg_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_linalg_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_linalg_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_linalg_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_map_utils.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_map_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_map_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_map_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_map_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_random_utils.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_random_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_random_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_random_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_random_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_thread_pool.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_thread_pool.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_thread_pool.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_thread_pool.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_thread_pool.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_variant_utils.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_variant_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_variant_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_variant_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_variant_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/VariantUtils", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_variant_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_variant_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_variant_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_variant_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/utils/../src/utils/variant_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_variant_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_variant_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_variant_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_variant_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_vector_utils.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_vector_utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_vector_utils.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_vector_utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-utils/test_vector_utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_apply.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_apply.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_apply.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_apply.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_apply.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_group_by.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_group_by.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_group_by.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_group_by.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_group_by.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_indexing.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_indexing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_indexing.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_indexing.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_indexing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_unique.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_unique.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_unique.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_unique.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-indexing/test_unique.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_call_trace.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_call_trace.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_call_trace.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_call_trace.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_call_trace.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_callers.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_callers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_callers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_callers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_callers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_covariance_utils.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_callers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_callers.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_callers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_callers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_error_handling.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_error_handling.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_error_handling.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_error_handling.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_error_handling.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_minimum_spanning_tree.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_minimum_spanning_tree.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_minimum_spanning_tree.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_minimum_spanning_tree.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_minimum_spanning_tree.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/graph/minimum_spanning_tree.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_minimum_spanning_tree.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_minimum_spanning_tree.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_minimum_spanning_tree.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_minimum_spanning_tree.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/Graph", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_minimum_spanning_tree.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_minimum_spanning_tree.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_minimum_spanning_tree.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_minimum_spanning_tree.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_model_adapter.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_model_adapter.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_model_adapter.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_model_adapter.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-misc/test_model_adapter.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_traits_cereal.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_cereal.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_cereal.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_traits_cereal.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_cereal.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "include/albatross/src/cereal/traits.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_cereal.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_cereal.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_traits_cereal.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_cereal.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_traits_core.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_core.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_core.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_traits_core.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_core.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_traits_covariance_functions.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_covariance_functions.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_covariance_functions.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_traits_covariance_functions.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_covariance_functions.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_traits_details.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_details.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_details.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_traits_details.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_details.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_traits_evaluation.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_evaluation.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_evaluation.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_traits_evaluation.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_evaluation.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_traits_indexing.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_traits_indexing.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/../include/albatross/utils/../Common", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_traits_indexing.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/../include/albatross/Common", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_traits_indexing.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/../include/albatross/Indexing", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_traits_indexing.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/../include/albatross/ForwardDeclarations", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_traits_indexing.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/../include/albatross/Dataset", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_traits_indexing.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/../include/albatross/utils/AsyncUtils", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_traits_indexing.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/../include/albatross/utils/../src/utils/async_utils.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_traits_indexing.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/../include/albatross/Distribution", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_traits_indexing.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-traits/test_traits_indexing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_covariance_function.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_covariance_function.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_covariance_function.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_covariance_function.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_covariance_function.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_covariance_functions.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_covariance_functions.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_covariance_functions.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_covariance_functions.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_covariance_functions.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_distance_metrics.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_distance_metrics.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_distance_metrics.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_distance_metrics.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_distance_metrics.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_radial.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_radial.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_radial.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_radial.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_radial.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_scaling_function.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_scaling_function.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_scaling_function.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_scaling_function.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-covariance/test_scaling_function.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_conditional_gaussian.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_conditional_gaussian.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_conditional_gaussian.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_conditional_gaussian.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_conditional_gaussian.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_gp.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_gp.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_gp.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_gp.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_gp.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_models.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_models.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_models.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_models.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_models.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_ransac.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_ransac.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_ransac.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_ransac.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_ransac.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_sparse_gp.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_sparse_gp.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_sparse_gp.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_sparse_gp.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-models/test_sparse_gp.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_chi_squared_versus_gsl.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-stats/test_chi_squared_versus_gsl.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-stats/test_chi_squared_versus_gsl.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_chi_squared_versus_gsl.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-stats/test_chi_squared_versus_gsl.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_stats.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-stats/test_stats.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-stats/test_stats.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_stats.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-stats/test_stats.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_cross_validation.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-cross-validation/test_cross_validation.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-cross-validation/test_cross_validation.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_cross_validation.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-cross-validation/test_cross_validation.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_concatenate.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_concatenate.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_concatenate.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_concatenate.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_concatenate.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_core_dataset.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_dataset.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_dataset.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_core_dataset.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_dataset.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_core_distribution.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_distribution.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_distribution.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_core_distribution.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_distribution.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_core_distribution.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_distribution.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_distribution.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_core_distribution.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_distribution.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_core_model.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_model.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_model.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_core_model.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_core_model.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_linear_combination.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_linear_combination.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_linear_combination.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_linear_combination.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_linear_combination.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_parameter_handling_mixin.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_parameter_handling_mixin.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_parameter_handling_mixin.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_parameter_handling_mixin.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_parameter_handling_mixin.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "tests/test_prediction.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_prediction.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_prediction.pic.o", + "-fPIC", + "-DCEREAL_THREAD_SAFE=1", + "-DEIGEN_NO_DEBUG", + "-DLINUX", + "-DCSV_IO_NO_THREAD", + "-iquote", + ".", + "-iquote", + "bazel-out/k8-fastbuild/bin", + "-iquote", + "external/threadpool+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-iquote", + "external/cereal+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/cereal+", + "-iquote", + "external/eigen+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-iquote", + "external/fast-cpp-csv-parser+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-iquote", + "external/gzip_hpp+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-iquote", + "external/variant+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/variant+", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "-isystem", + "tests", + "-isystem", + "bazel-out/k8-fastbuild/bin/tests", + "-isystem", + "include", + "-isystem", + "bazel-out/k8-fastbuild/bin/include", + "-isystem", + "external/threadpool+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/threadpool+", + "-isystem", + "external/cereal+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/cereal+/include", + "-isystem", + "external/eigen+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/eigen+", + "-isystem", + "external/fast-cpp-csv-parser+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/fast-cpp-csv-parser+", + "-isystem", + "external/gzip_hpp+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/gzip_hpp+/include", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-isystem", + "external/variant+/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/variant+/include", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-Wno-deprecated-declarations", + "-std=c++14", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "tests/test_prediction.cc", + "-o", + "bazel-out/k8-fastbuild/bin/_objs/albatross-test-core/test_prediction.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/src/gmock-cardinalities.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-cardinalities.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/gmock-cardinalities.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-cardinalities.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/internal/custom/gmock-port.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-cardinalities.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/internal/gmock-internal-utils.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-cardinalities.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/internal/gmock-port.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-cardinalities.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-cardinalities.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/gmock-nice-strict.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/gmock-actions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/gmock-function-mocker.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/gmock.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/gmock-more-matchers.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/internal/gmock-pp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/gmock-matchers.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/internal/custom/gmock-generated-actions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/gmock-spec-builders.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/gmock-more-actions.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/include/gmock/internal/custom/gmock-matchers.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-internal-utils.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-internal-utils.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/src/gmock-matchers.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-matchers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-matchers.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-matchers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-matchers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/src/gmock-spec-builders.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-spec-builders.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-spec-builders.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock-spec-builders.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock-spec-builders.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/src/gmock.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gmock.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/src/gtest-assertion-result.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-assertion-result.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-assertion-result.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-assertion-result.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-assertion-result.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/src/gtest-death-test.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/netinet/in.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/rpc/netdb.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_iovec.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/gtest-spi.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/mman.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/sys/mman.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/sockaddr.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/types/struct_osockaddr.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/socket_type.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/sys/socket.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/mman-linux.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/netdb.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/src/gtest-internal-inl.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/mman-shared.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/fcntl-linux.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/include/gtest/internal/custom/gtest.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/socket.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/asm/sockios.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/fcntl.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/asm/socket.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/in.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/asm-generic/socket.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/netdb.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/fcntl.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/arpa/inet.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/linux/falloc.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/asm-generic/sockios.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-death-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-death-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/src/gtest-filepath.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-filepath.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-filepath.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-filepath.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-filepath.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/src/gtest-matchers.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-matchers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-matchers.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-matchers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-matchers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/src/gtest-port.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-port.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-port.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-port.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-port.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/src/gtest-printers.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-printers.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-printers.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-printers.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-printers.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/src/gtest-test-part.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-test-part.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-test-part.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-test-part.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-test-part.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/src/gtest-typed-test.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-typed-test.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-typed-test.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest-typed-test.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest-typed-test.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googletest/src/gtest.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/lib/gcc/x86_64-linux-gnu/10/../../../../include/c++/10/csignal", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/sys/time.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "-pthread", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googletest/src/gtest.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest/gtest.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/SuiteSparseQR.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/SuiteSparseQR.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Include/spqr.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/SuiteSparseQR.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/SuiteSparseQR_C.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_C.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_C.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/SuiteSparseQR_C.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_C.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Include/SuiteSparseQR_C.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_C.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_C.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/SuiteSparseQR_C.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_C.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/SuiteSparseQR_expert.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_expert.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_expert.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/SuiteSparseQR_expert.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_expert.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/SuiteSparseQR_qmult.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_qmult.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_qmult.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/SuiteSparseQR_qmult.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/SuiteSparseQR_qmult.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_1colamd.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_1colamd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_1colamd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_1colamd.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_1colamd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_1factor.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_1factor.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_1factor.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_1factor.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_1factor.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_1fixed.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_1fixed.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_1fixed.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_1fixed.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_1fixed.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_analyze.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_analyze.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_analyze.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_analyze.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_analyze.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_append.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_append.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_append.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_append.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_append.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_assemble.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_assemble.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_assemble.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_assemble.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_assemble.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_cpack.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_cpack.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_cpack.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_cpack.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_cpack.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_csize.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_csize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_csize.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_csize.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_csize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_cumsum.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_cumsum.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_cumsum.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_cumsum.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_cumsum.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_debug.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_debug.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_debug.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_debug.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_debug.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_factorize.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_factorize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_factorize.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_factorize.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_factorize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_fcsize.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_fcsize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_fcsize.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_fcsize.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_fcsize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_freefac.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_freefac.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_freefac.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_freefac.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_freefac.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_freenum.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_freenum.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_freenum.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_freenum.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_freenum.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_freesym.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_freesym.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_freesym.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_freesym.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_freesym.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_front.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_front.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_front.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_front.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_front.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_fsize.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_fsize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_fsize.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_fsize.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_fsize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_happly.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_happly.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_happly.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_happly.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_happly.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_happly_work.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_happly_work.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_happly_work.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_happly_work.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_happly_work.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_hpinv.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_hpinv.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_hpinv.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_hpinv.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_hpinv.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_kernel.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_kernel.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_kernel.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_kernel.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_kernel.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_larftb.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_larftb.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_larftb.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_larftb.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_larftb.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_maxcolnorm.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_maxcolnorm.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_maxcolnorm.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_maxcolnorm.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_maxcolnorm.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_panel.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_panel.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_panel.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_panel.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_panel.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_parallel.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_parallel.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_parallel.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_parallel.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_parallel.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_rconvert.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rconvert.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rconvert.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_rconvert.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rconvert.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_rcount.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rcount.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rcount.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_rcount.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rcount.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_rhpack.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rhpack.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rhpack.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_rhpack.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rhpack.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_rmap.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rmap.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rmap.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_rmap.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rmap.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_rsolve.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rsolve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rsolve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_rsolve.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_rsolve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_shift.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_shift.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_shift.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_shift.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_shift.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_stranspose1.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_stranspose1.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_stranspose1.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_stranspose1.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_stranspose1.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_stranspose2.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_stranspose2.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_stranspose2.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_stranspose2.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_stranspose2.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_tol.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_tol.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_tol.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_tol.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_tol.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_trapezoidal.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_trapezoidal.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_trapezoidal.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_trapezoidal.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_trapezoidal.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SPQR/Source/spqr_type.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_type.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_type.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SPQR/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Include", + "-isystem", + "external/suitesparse+/SPQR/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SPQR/Source", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/suitesparse+/SPQR/Source/spqr_type.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/spqr/spqr_type.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/googletest+/googlemock/src/gmock_main.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest_main/gmock_main.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest_main/gmock_main.pic.o", + "-fPIC", + "-iquote", + "external/googletest+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/googletest+", + "-isystem", + "external/googletest+/googlemock", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock", + "-isystem", + "external/googletest+/googlemock/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googlemock/include", + "-isystem", + "external/googletest+/googletest", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest", + "-isystem", + "external/googletest+/googletest/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/googletest+/googletest/include", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/googletest+/googlemock/src/gmock_main.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/googletest+/_objs/gtest_main/gmock_main.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/debug.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/debug.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/debug.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/debug.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/debug.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/debug.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/debug.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/debug.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/debug.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/debug.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/entropy_common.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/zstd_deps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/../zstd_errors.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/compiler.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/bits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/portability_macros.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/bitstream.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/huf.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/mem.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-linux-llvm/lib/clang/14.0.0/include/cet.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/error_private.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/fse.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/entropy_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/entropy_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/error_private.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/error_private.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/error_private.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/error_private.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/error_private.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/fse_decompress.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/fse_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/pool.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/pool.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/../zstd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/pool.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/../common/allocations.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/pool.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/threading.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/pool.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/pool.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/pool.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/pool.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/threading.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/threading.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/threading.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/threading.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/threading.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/xxhash.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/xxhash.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/xxhash.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/xxhash.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/xxhash.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/xxhash.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/xxhash.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/xxhash.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/xxhash.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/xxhash.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/zstd_common.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/zstd_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/zstd_trace.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/zstd_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/cpu.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/zstd_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/common/zstd_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/common/zstd_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/fse_compress.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/hist.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/../zstd_errors.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/bits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/error_private.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/portability_macros.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/fse.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/mem.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/debug.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/bitstream.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/compiler.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/zstd_deps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/fse_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fse_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/hist.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/hist.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/hist.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/hist.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/hist.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/huf_compress.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/huf_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/huf.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/huf_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_compress.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/zstd_trace.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/../zstd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_fast.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_compress_superblock.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/zstd_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_cwksp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/allocations.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../zstd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstdmt_compress.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_opt.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/xxhash.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_ldm.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_lazy.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_compress_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/cpu.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_compress_literals.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/clevels.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_compress_sequences.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_double_fast.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_compress_literals.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress_literals.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress_literals.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress_literals.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress_literals.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_compress_sequences.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress_sequences.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress_sequences.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress_sequences.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress_sequences.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_compress_superblock.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress_superblock.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress_superblock.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_compress_superblock.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_compress_superblock.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_double_fast.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_double_fast.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_double_fast.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_double_fast.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_double_fast.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_fast.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_fast.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_fast.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_fast.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_fast.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_lazy.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_lazy.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_lazy.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_lazy.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_lazy.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_ldm.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ldm.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ldm.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_ldm.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ldm.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_ldm_geartab.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ldm.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ldm.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_ldm.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ldm.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstd_opt.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_opt.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_opt.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstd_opt.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_opt.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/zstdmt_compress.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstdmt_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstdmt_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstdmt_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstdmt_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/threading.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstdmt_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstdmt_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstdmt_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstdmt_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/compress/../common/pool.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstdmt_compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstdmt_compress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/compress/zstdmt_compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstdmt_compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/huf_decompress.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/compiler.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/zstd_trace.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/../zstd_errors.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/zstd_deps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/xxhash.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/bitstream.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/../zstd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/debug.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/mem.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/huf.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/cpu.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/portability_macros.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/error_private.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/zstd_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/fse.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/bits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/zstd_ddict.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/zstd_ddict.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/zstd_decompress_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/zstd_ddict.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/zstd_ddict.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/zstd_ddict.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../zstd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/zstd_ddict.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/../common/allocations.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/zstd_ddict.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_ddict.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/zstd_decompress.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/zstd_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/zstd_decompress_block.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_decompress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_decompress.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/zstd_decompress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_decompress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/zstd_decompress_block.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_decompress_block.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_decompress_block.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/zstd_decompress_block.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zstd_decompress_block.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/decompress/huf_decompress_amd64.S", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xassembler-with-cpp", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress_amd64.pic.d", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/decompress/huf_decompress_amd64.S", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/huf_decompress_amd64.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/cover.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/debug.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/compiler.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/../zstd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/bits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/cpu.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../zdict.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/../zstd_errors.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/huf.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/xxhash.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/error_private.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/cover.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/zstd_deps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/threading.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/portability_macros.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/bitstream.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/fse.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/mem.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/pool.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/zstd_trace.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../common/zstd_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/cover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/cover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/divsufsort.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/divsufsort.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/divsufsort.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/divsufsort.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/divsufsort.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/divsufsort.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/divsufsort.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/divsufsort.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/divsufsort.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/divsufsort.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/fastcover.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/fastcover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../compress/zstdmt_compress.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/fastcover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../compress/zstd_compress_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/fastcover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../compress/../common/zstd_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/fastcover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../compress/../zstd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/fastcover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../compress/../common/zstd_deps.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/fastcover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../compress/../common/allocations.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/fastcover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../compress/../common/bits.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/fastcover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../compress/zstd_cwksp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/fastcover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/../compress/../common/portability_macros.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/fastcover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/fastcover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zstd+/lib/dictBuilder/zdict.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zdict.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zdict.pic.o", + "-fPIC", + "-DXXH_NAMESPACE=ZSTD_", + "-DZSTD_MULTITHREAD", + "-DZSTD_BUILD_SHARED=OFF", + "-DZSTD_BUILD_STATIC=ON", + "-iquote", + "external/zstd+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zstd+", + "-isystem", + "external/zstd+/lib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zstd+/lib", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zstd+/lib/dictBuilder/zdict.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zstd+/_objs/zstd/zdict.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/direct/DIRect.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/direct/DIRect.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/direct/direct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/direct/DIRect.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/util/nlopt-util.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/direct/DIRect.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/api/nlopt.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/direct/DIRect.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/direct/direct-internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/direct/DIRect.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRect.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/direct/direct_wrap.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/direct_wrap.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/direct_wrap.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/direct/direct_wrap.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/direct_wrap.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/direct/DIRserial.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRserial.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRserial.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/direct/DIRserial.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRserial.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/direct/DIRsubrout.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRsubrout.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRsubrout.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/direct/DIRsubrout.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/DIRsubrout.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/cdirect/cdirect.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cdirect.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cdirect.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/cdirect/cdirect.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cdirect.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/cdirect/cdirect.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cdirect.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cdirect.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/cdirect/cdirect.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cdirect.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/util/redblack.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cdirect.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cdirect.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/cdirect/cdirect.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cdirect.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/cdirect/hybrid.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/hybrid.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/hybrid.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/cdirect/hybrid.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/hybrid.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/praxis/praxis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/praxis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/praxis.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/praxis/praxis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/praxis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/praxis/praxis.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/praxis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/praxis.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/praxis/praxis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/praxis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/luksan/plis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/plis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/plis.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/luksan/plis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/plis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/luksan/luksan.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/plis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/plis.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/luksan/plis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/plis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/luksan/plip.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/plip.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/plip.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/luksan/plip.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/plip.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/luksan/pnet.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/pnet.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/pnet.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/luksan/pnet.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/pnet.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/luksan/mssubs.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mssubs.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mssubs.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/luksan/mssubs.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mssubs.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/luksan/pssubs.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/pssubs.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/pssubs.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/luksan/pssubs.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/pssubs.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/crs/crs.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/crs.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/crs.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/crs/crs.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/crs.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/crs/crs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/crs.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/crs.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/crs/crs.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/crs.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/mlsl/mlsl.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mlsl.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mlsl.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/mlsl/mlsl.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mlsl.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/mlsl/mlsl.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mlsl.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mlsl.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/mlsl/mlsl.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mlsl.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/mma/mma.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mma.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mma.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/mma/mma.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mma.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/mma/mma.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mma.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mma.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/mma/mma.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mma.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/mma/ccsa_quadratic.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ccsa_quadratic.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ccsa_quadratic.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/mma/ccsa_quadratic.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ccsa_quadratic.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/cobyla/cobyla.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cobyla.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cobyla.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/cobyla/cobyla.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cobyla.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/cobyla/cobyla.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cobyla.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cobyla.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/cobyla/cobyla.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/cobyla.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/newuoa/newuoa.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/newuoa.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/newuoa.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/newuoa/newuoa.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/newuoa.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/newuoa/newuoa.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/newuoa.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/newuoa.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/newuoa/newuoa.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/newuoa.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/neldermead/nldrmd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/nldrmd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/nldrmd.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/neldermead/nldrmd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/nldrmd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/neldermead/neldermead.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/nldrmd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/nldrmd.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/neldermead/nldrmd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/nldrmd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/neldermead/sbplx.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/sbplx.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/sbplx.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/neldermead/sbplx.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/sbplx.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/auglag/auglag.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/auglag.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/auglag.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/auglag/auglag.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/auglag.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/auglag/auglag.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/auglag.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/auglag.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/auglag/auglag.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/auglag.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/bobyqa/bobyqa.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/bobyqa.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/bobyqa.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/bobyqa/bobyqa.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/bobyqa.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/bobyqa/bobyqa.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/bobyqa.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/bobyqa.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/bobyqa/bobyqa.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/bobyqa.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/isres/isres.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/isres.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/isres.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/isres/isres.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/isres.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/isres/isres.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/isres.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/isres.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/isres/isres.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/isres.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/slsqp/slsqp.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/slsqp.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/slsqp.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/slsqp/slsqp.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/slsqp.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/slsqp/slsqp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/slsqp.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/slsqp.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/slsqp/slsqp.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/slsqp.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/esch/esch.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/esch.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/esch.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/esch/esch.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/esch.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/esch/esch.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/esch.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/esch.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/esch/esch.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/esch.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/api/general.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/general.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/general.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/api/general.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/general.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/api/nlopt-internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/general.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/general.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/api/general.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/general.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/api/options.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/options.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/options.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/api/options.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/options.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/api/optimize.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/optimize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/optimize.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/api/optimize.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/optimize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/api/deprecated.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/deprecated.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/deprecated.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/api/deprecated.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/deprecated.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/api/f77api.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/f77api.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/f77api.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/api/f77api.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/f77api.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/api/f77funcs_.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/f77api.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/f77api.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/api/f77api.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/f77api.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/api/f77funcs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/f77api.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/f77api.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/api/f77api.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/f77api.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/util/mt19937ar.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mt19937ar.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mt19937ar.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/util/mt19937ar.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/mt19937ar.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/util/sobolseq.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/sobolseq.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/sobolseq.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/util/sobolseq.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/sobolseq.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/util/soboldata.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/sobolseq.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/sobolseq.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/util/sobolseq.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/sobolseq.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/util/timer.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/timer.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/timer.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/util/timer.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/timer.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/util/stop.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/stop.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/stop.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/util/stop.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/stop.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/util/redblack.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/redblack.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/redblack.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/util/redblack.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/redblack.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/util/qsort_r.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/qsort_r.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/qsort_r.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/util/qsort_r.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/qsort_r.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/util/rescale.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/rescale.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/rescale.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/util/rescale.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/rescale.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/global.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/global.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/global.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/global.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/linalg.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/global.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/stogo_config.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/global.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/tools.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/global.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/local.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/global.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/global.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/linalg.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/linalg.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/linalg.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/linalg.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/linalg.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/local.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/local.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/local.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/local.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/local.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/stogo.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/stogo.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/stogo.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/stogo.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/stogo.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/stogo.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/stogo.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/stogo.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/stogo.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/stogo.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/stogo/tools.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/tools.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/tools.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/stogo/tools.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/tools.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/ags/ags.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/ags/ags.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/ags/evolvent.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/ags/ags.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/ags/data_types.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/ags/ags.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/ags/solver.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/ags/ags.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/ags/ags.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/ags/ags.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/ags/local_optimizer.hpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/ags/ags.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/ags.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/ags/evolvent.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/evolvent.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/evolvent.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/ags/evolvent.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/evolvent.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/ags/local_optimizer.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/local_optimizer.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/local_optimizer.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/ags/local_optimizer.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/local_optimizer.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/ags/solver.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/solver.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/solver.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/nlopt+/src/algs/ags/solver.cc", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/solver.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/subplex/subplex.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/subplex.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/subplex.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/subplex/subplex.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/subplex.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/nlopt+/src/algs/subplex/subplex.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/subplex.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/subplex.pic.o", + "-fPIC", + "-iquote", + "external/nlopt+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+", + "-isystem", + "external/nlopt+/src", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src", + "-isystem", + "external/nlopt+/src/algs/stogo", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/stogo", + "-isystem", + "external/nlopt+/src/util", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/util", + "-isystem", + "external/nlopt+/src/algs/direct", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/direct", + "-isystem", + "external/nlopt+/src/algs/cdirect", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cdirect", + "-isystem", + "external/nlopt+/src/algs/praxis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/praxis", + "-isystem", + "external/nlopt+/src/algs/luksan", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/luksan", + "-isystem", + "external/nlopt+/src/algs/crs", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/crs", + "-isystem", + "external/nlopt+/src/algs/mlsl", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mlsl", + "-isystem", + "external/nlopt+/src/algs/mma", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/mma", + "-isystem", + "external/nlopt+/src/algs/cobyla", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/cobyla", + "-isystem", + "external/nlopt+/src/algs/newuoa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/newuoa", + "-isystem", + "external/nlopt+/src/algs/neldermead", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/neldermead", + "-isystem", + "external/nlopt+/src/algs/auglag", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/auglag", + "-isystem", + "external/nlopt+/src/algs/bobyqa", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/bobyqa", + "-isystem", + "external/nlopt+/src/algs/isres", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/isres", + "-isystem", + "external/nlopt+/src/algs/slsqp", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/slsqp", + "-isystem", + "external/nlopt+/src/algs/esch", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/esch", + "-isystem", + "external/nlopt+/src/algs/ags", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/ags", + "-isystem", + "external/nlopt+/src/algs/subplex", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/algs/subplex", + "-isystem", + "external/nlopt+/src/api", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/nlopt+/src/api", + "-Wno-all", + "-Wno-deprecated-declarations", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/nlopt+/src/algs/subplex/subplex.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/nlopt+/_objs/nlopt/subplex.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/hedron_compile_commands+/print_args.cpp", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/hedron_compile_commands+/_objs/print_args/print_args.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/hedron_compile_commands+/_objs/print_args/print_args.pic.o", + "-fPIC", + "-iquote", + "external/hedron_compile_commands+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/hedron_compile_commands+", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/bazel_tools", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/hedron_compile_commands+/print_args.cpp", + "-o", + "bazel-out/k8-fastbuild/bin/external/hedron_compile_commands+/_objs/print_args/print_args.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_amd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_amd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Include/cholmod_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_amd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_amd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_amd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Include/amd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_amd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_amd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_analyze.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_analyze.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_analyze.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_analyze.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_analyze.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_analyze.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_analyze.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_analyze.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_analyze.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_analyze.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_colamd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_colamd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_colamd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_colamd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_colamd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_colamd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_colamd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_colamd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_colamd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_colamd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/COLAMD/Include/colamd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_colamd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_colamd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_colamd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_colamd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_etree.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_etree.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_etree.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_etree.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_etree.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_etree.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_etree.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_etree.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_etree.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_etree.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_factorize.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factorize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factorize.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_factorize.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factorize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_factorize.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factorize.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factorize.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_factorize.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factorize.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_postorder.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_postorder.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_postorder.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_postorder.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_postorder.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_postorder.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_postorder.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_postorder.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_postorder.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_postorder.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rcond.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rcond.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rcond.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rcond.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rcond.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_rcond.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rcond.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rcond.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rcond.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rcond.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_resymbol.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_resymbol.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_resymbol.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_resymbol.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_resymbol.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_resymbol.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_resymbol.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_resymbol.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_resymbol.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_resymbol.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rowcolcounts.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowcolcounts.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowcolcounts.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rowcolcounts.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowcolcounts.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_rowcolcounts.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowcolcounts.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowcolcounts.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rowcolcounts.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowcolcounts.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rowfac.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rowfac.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/t_cholmod_rowfac.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rowfac.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Include/cholmod_template.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rowfac.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_rowfac.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_rowfac.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowfac.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_solve.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_solve.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/t_cholmod_lsolve.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_solve.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_solve.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_solve.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/t_cholmod_solve.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_solve.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/t_cholmod_ltsolve.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_solve.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_solve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_spsolve.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_spsolve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_spsolve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_spsolve.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_spsolve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Cholesky/cholmod_spsolve.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_spsolve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_spsolve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Cholesky/cholmod_l_spsolve.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_spsolve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_aat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_aat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_aat.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_aat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_aat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_aat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_aat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_aat.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_aat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_aat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_add.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_add.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_add.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_add.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_add.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_add.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_add.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_add.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_add.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_add.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_band.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_band.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_band.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_band.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_band.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_band.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_band.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_band.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_band.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_band.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_change_factor.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_change_factor.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_change_factor.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_change_factor.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_change_factor.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_change_factor.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_change_factor.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_change_factor.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_change_factor.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_change_factor.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/t_cholmod_change_factor.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_change_factor.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_change_factor.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_change_factor.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_change_factor.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_common.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_common.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_common.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_common.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_common.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_common.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_common.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_complex.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_complex.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_complex.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_complex.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_complex.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_complex.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_complex.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_complex.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_complex.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_complex.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_copy.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_copy.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_copy.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_copy.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_copy.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_copy.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_copy.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_copy.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_copy.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_copy.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_dense.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_dense.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_dense.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_dense.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_dense.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_dense.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_dense.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_dense.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_dense.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_dense.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/t_cholmod_dense.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_dense.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_dense.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_dense.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_dense.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_error.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_error.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_error.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_error.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_error.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_error.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_error.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_error.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_error.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_error.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_factor.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factor.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factor.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_factor.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factor.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_factor.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factor.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factor.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_factor.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_factor.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_memory.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_memory.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_memory.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_memory.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_memory.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_memory.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_memory.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_memory.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_memory.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_memory.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_sparse.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sparse.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sparse.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_sparse.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sparse.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_sparse.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sparse.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sparse.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_sparse.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sparse.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_transpose.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_transpose.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_transpose.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_transpose.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_transpose.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_transpose.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_transpose.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_transpose.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_transpose.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_transpose.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/t_cholmod_transpose.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_transpose.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_transpose.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_transpose.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_transpose.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_triplet.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_triplet.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_triplet.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_triplet.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_triplet.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_triplet.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_triplet.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_triplet.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_triplet.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_triplet.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/t_cholmod_triplet.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_triplet.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_triplet.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_triplet.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_triplet.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_l_version.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_version.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_version.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_version.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_version.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Core/cholmod_version.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_version.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_version.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Core/cholmod_l_version.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_version.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_drop.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_drop.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_drop.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_drop.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_drop.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_drop.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_drop.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_drop.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_drop.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_drop.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_horzcat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_horzcat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_horzcat.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_horzcat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_horzcat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_horzcat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_horzcat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_horzcat.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_horzcat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_horzcat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_norm.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_norm.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_norm.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_norm.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_norm.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_norm.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_norm.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_norm.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_norm.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_norm.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_scale.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_scale.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_scale.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_scale.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_scale.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_scale.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_scale.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_scale.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_scale.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_scale.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_sdmult.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sdmult.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sdmult.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_sdmult.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sdmult.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_sdmult.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sdmult.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sdmult.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_sdmult.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sdmult.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/t_cholmod_sdmult.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sdmult.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sdmult.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_sdmult.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_sdmult.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_ssmult.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ssmult.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ssmult.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_ssmult.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ssmult.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_ssmult.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ssmult.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ssmult.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_ssmult.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ssmult.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_submatrix.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_submatrix.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_submatrix.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_submatrix.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_submatrix.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_submatrix.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_submatrix.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_submatrix.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_submatrix.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_submatrix.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_symmetry.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_symmetry.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_symmetry.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_symmetry.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_symmetry.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_symmetry.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_symmetry.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_symmetry.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_symmetry.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_symmetry.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_vertcat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_vertcat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_vertcat.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_vertcat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_vertcat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_vertcat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_vertcat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_vertcat.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/MatrixOps/cholmod_l_vertcat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_vertcat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Modify/cholmod_l_rowadd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowadd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowadd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Modify/cholmod_l_rowadd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowadd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Modify/cholmod_rowadd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowadd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowadd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Modify/cholmod_l_rowadd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowadd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Modify/cholmod_l_rowdel.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowdel.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowdel.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Modify/cholmod_l_rowdel.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowdel.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Modify/cholmod_rowdel.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowdel.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowdel.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Modify/cholmod_l_rowdel.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_rowdel.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Modify/cholmod_l_updown.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Modify/cholmod_l_updown.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Modify/t_cholmod_updown.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Modify/cholmod_l_updown.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Modify/t_cholmod_updown_numkr.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Modify/cholmod_l_updown.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Modify/cholmod_updown.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Modify/cholmod_l_updown.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_updown.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_l_camd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_camd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_camd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_camd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_camd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_camd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_camd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_camd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_camd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_camd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Include/camd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_camd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_camd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_camd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_camd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_l_ccolamd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ccolamd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ccolamd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_ccolamd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ccolamd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CCOLAMD/Include/ccolamd.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ccolamd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ccolamd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_ccolamd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ccolamd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_ccolamd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ccolamd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ccolamd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_ccolamd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_ccolamd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_l_csymamd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_csymamd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_csymamd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_csymamd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_csymamd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_csymamd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_csymamd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_csymamd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_csymamd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_csymamd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_l_nesdis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_nesdis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_nesdis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_nesdis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_nesdis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_nesdis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_nesdis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_nesdis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_nesdis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_nesdis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_mkmemory.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_mkpqueue2.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_types.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_externs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/setjmp.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_getopt.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_proto.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_arch.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_struct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/GKlib.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_mkrandom.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_mkutils.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include/metis.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_macros.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_mksort.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_defs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_metis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_mkblas.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gk_mkpqueue.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_l_metis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_metis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/compress.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/mcore.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/separator.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/rename.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/metislib.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/kwayrefine.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/memory.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/initpart.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/defs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/fortran.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/proto.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/sfm.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/wspace.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/gklib_rename.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/gklib.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/debug.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/blas.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/sort.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/ometis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/omp.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/macros.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/fm.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mmd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/minconn.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mincover.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/auxapi.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/kmetis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/refine.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/parmetis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/util.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/kwayfm.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/contig.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/bucketsort.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/srefine.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/pmetis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/evaluate.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/error.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/util.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/gklib_defs.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/timing.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/graph.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/stat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mcutil.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/struct.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/options.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/balance.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/fkvkselect.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/random.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/coarsen.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Partition/cholmod_metis_wrapper.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_metis_wrapper.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_numeric.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_numeric.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_numeric.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_numeric.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_numeric.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Supernodal/cholmod_super_numeric.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_numeric.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_numeric.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_numeric.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_numeric.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Supernodal/t_cholmod_super_numeric.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_numeric.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_numeric.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_numeric.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_numeric.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_solve.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_solve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_solve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_solve.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_solve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Supernodal/cholmod_super_solve.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_solve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_solve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_solve.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_solve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Supernodal/t_cholmod_super_solve.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_solve.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_solve.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_solve.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_solve.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_symbolic.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_symbolic.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_symbolic.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_symbolic.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_symbolic.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/Supernodal/cholmod_super_symbolic.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_symbolic.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_symbolic.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Include", + "-isystem", + "external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Cholesky", + "-isystem", + "external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/MatrixOps", + "-isystem", + "external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Modify", + "-isystem", + "external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Partition", + "-isystem", + "external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/Supernodal", + "-isystem", + "external/suitesparse+/CHOLMOD", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CHOLMOD/Supernodal/cholmod_l_super_symbolic.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/cholmod/cholmod_l_super_symbolic.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-g0", + "-O3", + "-D_FORTIFY_SOURCE=1", + "-ffunction-sections", + "-fdata-sections", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.d", + "-frandom-seed=bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o", + "-fPIC", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools", + "-g0", + "-g0", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "-o", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/strings_fortified.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-g0", + "-O3", + "-D_FORTIFY_SOURCE=1", + "-ffunction-sections", + "-fdata-sections", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.d", + "-frandom-seed=bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o", + "-fPIC", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools", + "-g0", + "-g0", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "-o", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/wchar2.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-g0", + "-O3", + "-D_FORTIFY_SOURCE=1", + "-ffunction-sections", + "-fdata-sections", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.d", + "-frandom-seed=bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o", + "-fPIC", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools", + "-g0", + "-g0", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "-o", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/string_fortified.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-g0", + "-O3", + "-D_FORTIFY_SOURCE=1", + "-ffunction-sections", + "-fdata-sections", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.d", + "-frandom-seed=bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o", + "-fPIC", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools", + "-g0", + "-g0", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "-o", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/stdlib.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-g0", + "-O3", + "-D_FORTIFY_SOURCE=1", + "-ffunction-sections", + "-fdata-sections", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.d", + "-frandom-seed=bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o", + "-fPIC", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools", + "-g0", + "-g0", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "-o", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/stdio.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-g0", + "-O3", + "-D_FORTIFY_SOURCE=1", + "-ffunction-sections", + "-fdata-sections", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.d", + "-frandom-seed=bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o", + "-fPIC", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools", + "-g0", + "-g0", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "-o", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/stdio2.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-g0", + "-O3", + "-D_FORTIFY_SOURCE=1", + "-ffunction-sections", + "-fdata-sections", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.d", + "-frandom-seed=bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o", + "-fPIC", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools", + "-g0", + "-g0", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "-o", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/select2.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-g0", + "-O3", + "-D_FORTIFY_SOURCE=1", + "-ffunction-sections", + "-fdata-sections", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.d", + "-frandom-seed=bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o", + "-fPIC", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools", + "-g0", + "-g0", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "-o", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot/usr/include/x86_64-linux-gnu/bits/stdlib-bsearch.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-g0", + "-O3", + "-D_FORTIFY_SOURCE=1", + "-ffunction-sections", + "-fdata-sections", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.d", + "-frandom-seed=bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o", + "-fPIC", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools", + "-g0", + "-g0", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "-o", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-xc++", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-g0", + "-O3", + "-D_FORTIFY_SOURCE=1", + "-ffunction-sections", + "-fdata-sections", + "-std=c++14", + "-MD", + "-MF", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.d", + "-frandom-seed=bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.o", + "-iquote", + "external/bazel_tools", + "-iquote", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools", + "-g0", + "-g0", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-stdlib=libstdc++", + "-c", + "external/bazel_tools/src/tools/launcher/launcher_maker.cc", + "-o", + "bazel-out/k8-opt-exec-ST-d57f47055a04/bin/external/bazel_tools/src/tools/launcher/_objs/launcher_maker/launcher_maker.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/adler32.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/adler32.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/zconf.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/adler32.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/zutil.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/adler32.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/zlib.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/adler32.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/adler32.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/compress.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/compress.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/crc32.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/crc32.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/crc32.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/crc32.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/crc32.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/crc32.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/crc32.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/crc32.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/crc32.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/crc32.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/deflate.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/deflate.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/deflate.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/deflate.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/deflate.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/deflate.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/deflate.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/deflate.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/deflate.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/deflate.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/gzclose.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzclose.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzclose.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/gzclose.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzclose.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/gzguts.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzclose.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzclose.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/gzclose.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzclose.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/gzlib.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzlib.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzlib.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/gzlib.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzlib.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/gzread.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzread.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzread.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/gzread.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzread.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/gzwrite.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzwrite.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzwrite.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/gzwrite.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/gzwrite.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/infback.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/infback.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/inflate.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/infback.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/inffixed.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/infback.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/inftrees.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/infback.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/inffast.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/infback.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/infback.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/inffast.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/inffast.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/inffast.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/inffast.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/inffast.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/inflate.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/inflate.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/inflate.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/inflate.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/inflate.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/inftrees.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/inftrees.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/inftrees.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/inftrees.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/inftrees.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/trees.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/trees.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/trees.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/trees.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/trees.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/trees.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/trees.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/trees.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/trees.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/trees.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/uncompr.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/uncompr.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/uncompr.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/uncompr.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/uncompr.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/zlib+/zutil.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/zutil.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/zutil.pic.o", + "-fPIC", + "-iquote", + "external/zlib+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/zlib+", + "-isystem", + "external/zlib+/zlib/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/zlib+/zlib/include", + "-Wno-deprecated-non-prototype", + "-Wno-unused-variable", + "-Wno-implicit-function-declaration", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/zlib+/zutil.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/zlib+/_objs/z/zutil.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/SuiteSparse_config/SuiteSparse_config.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/suitesparseconfig/SuiteSparse_config.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/suitesparseconfig/SuiteSparse_config.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/SuiteSparse_config/SuiteSparse_config.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/suitesparseconfig/SuiteSparse_config.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CCOLAMD/Source/ccolamd_l.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/ccolamd/ccolamd_l.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/ccolamd/ccolamd_l.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CCOLAMD/Source/ccolamd_l.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/ccolamd/ccolamd_l.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CCOLAMD/Source/ccolamd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/ccolamd/ccolamd_l.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/ccolamd/ccolamd_l.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CCOLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Include", + "-isystem", + "external/suitesparse+/CCOLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CCOLAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CCOLAMD/Source/ccolamd_l.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/ccolamd/ccolamd_l.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/auxapi.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/auxapi.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/auxapi.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/auxapi.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/auxapi.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/balance.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/balance.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/balance.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/balance.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/balance.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/bucketsort.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/bucketsort.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/bucketsort.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/bucketsort.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/bucketsort.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/checkgraph.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/checkgraph.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/checkgraph.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/checkgraph.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/checkgraph.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/coarsen.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/coarsen.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/coarsen.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/coarsen.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/coarsen.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/compress.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/compress.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/compress.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/compress.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/compress.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/contig.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/contig.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/contig.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/contig.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/contig.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/debug.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/debug.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/debug.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/debug.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/debug.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/fm.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/fm.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/fm.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/fm.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/fm.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/fortran.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/fortran.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/fortran.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/fortran.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/fortran.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/frename.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/frename.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/frename.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/frename.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/frename.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/gklib.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/gklib.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/gklib.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/gklib.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/gklib.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/graph.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/graph.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/graph.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/graph.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/graph.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/initpart.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/initpart.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/initpart.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/initpart.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/initpart.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/kmetis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/kmetis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/kmetis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/kmetis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/kmetis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/kwayfm.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/kwayfm.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/kwayfm.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/kwayfm.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/kwayfm.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/kwayrefine.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/kwayrefine.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/kwayrefine.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/kwayrefine.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/kwayrefine.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mcutil.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mcutil.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mcutil.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mcutil.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mcutil.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mesh.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mesh.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mesh.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mesh.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mesh.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/meshpart.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/meshpart.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/meshpart.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/meshpart.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/meshpart.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/minconn.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/minconn.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/minconn.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/minconn.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/minconn.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mincover.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mincover.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mincover.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mincover.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mincover.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mmd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mmd.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mmd.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/mmd.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/mmd.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/ometis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/ometis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/ometis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/ometis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/ometis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/options.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/options.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/options.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/options.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/options.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/parmetis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/parmetis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/parmetis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/parmetis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/parmetis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/pmetis.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/pmetis.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/pmetis.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/pmetis.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/pmetis.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/refine.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/refine.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/refine.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/refine.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/refine.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/separator.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/separator.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/separator.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/separator.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/separator.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/sfm.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/sfm.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/sfm.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/sfm.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/sfm.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/srefine.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/srefine.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/srefine.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/srefine.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/srefine.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/stat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/stat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/stat.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/stat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/stat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/timing.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/timing.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/timing.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/timing.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/timing.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/util.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/util.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/util.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/util.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/util.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/wspace.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/wspace.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/wspace.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/include", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/libmetis/wspace.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/SuiteSparse_metis/wspace.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l1.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l1.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l1.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l1.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l1.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Include/amd_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l1.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l1.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l1.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l1.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_1.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l1.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l1.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l1.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l1.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l2.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l2.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l2.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l2.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l2.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_2.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l2.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l2.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l2.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l2.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l_aat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_aat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_aat.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_aat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_aat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_aat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_aat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_aat.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_aat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_aat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l_control.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_control.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_control.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_control.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_control.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_control.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_control.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_control.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_control.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_control.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l_defaults.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_defaults.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_defaults.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_defaults.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_defaults.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_defaults.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_defaults.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_defaults.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_defaults.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_defaults.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l_dump.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_dump.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_dump.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_dump.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_dump.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_dump.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_dump.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_dump.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_dump.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_dump.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l_info.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_info.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_info.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_info.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_info.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_info.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_info.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_info.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_info.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_info.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l_order.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_order.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_order.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_order.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_order.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_order.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_order.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_order.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_order.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_order.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l_post_tree.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_post_tree.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_post_tree.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_post_tree.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_post_tree.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_post_tree.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_post_tree.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_post_tree.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_post_tree.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_post_tree.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l_postorder.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_postorder.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_postorder.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_postorder.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_postorder.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_postorder.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_postorder.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_postorder.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_postorder.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_postorder.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l_preprocess.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_preprocess.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_preprocess.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_preprocess.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_preprocess.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_preprocess.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_preprocess.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_preprocess.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_preprocess.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_preprocess.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_l_valid.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_valid.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_valid.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_valid.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_valid.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/AMD/Source/amd_valid.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_valid.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_valid.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/AMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Include", + "-isystem", + "external/suitesparse+/AMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/AMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/AMD/Source/amd_l_valid.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/amd/amd_l_valid.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l1.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l1.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l1.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l1.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l1.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_1.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l1.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l1.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l1.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l1.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Include/camd_internal.h", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l1.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l1.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l1.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l1.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l2.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l2.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l2.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l2.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l2.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_2.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l2.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l2.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l2.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l2.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l_aat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_aat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_aat.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_aat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_aat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_aat.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_aat.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_aat.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_aat.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_aat.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l_control.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_control.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_control.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_control.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_control.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_control.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_control.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_control.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_control.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_control.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l_defaults.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_defaults.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_defaults.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_defaults.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_defaults.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_defaults.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_defaults.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_defaults.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_defaults.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_defaults.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l_dump.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_dump.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_dump.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_dump.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_dump.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_dump.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_dump.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_dump.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_dump.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_dump.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l_info.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_info.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_info.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_info.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_info.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_info.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_info.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_info.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_info.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_info.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l_order.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_order.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_order.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_order.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_order.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_order.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_order.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_order.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_order.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_order.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l_postorder.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_postorder.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_postorder.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_postorder.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_postorder.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_postorder.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_postorder.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_postorder.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_postorder.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_postorder.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l_preprocess.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_preprocess.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_preprocess.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_preprocess.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_preprocess.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_preprocess.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_preprocess.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_preprocess.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_preprocess.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_preprocess.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_l_valid.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_valid.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_valid.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_valid.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_valid.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CAMD/Source/camd_valid.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_valid.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_valid.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Include", + "-isystem", + "external/suitesparse+/CAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/CAMD/Source/camd_l_valid.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/camd/camd_l_valid.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/COLAMD/Source/colamd_l.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/colamd/colamd_l.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/colamd/colamd_l.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/COLAMD/Source/colamd_l.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/colamd/colamd_l.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/COLAMD/Source/colamd.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/colamd/colamd_l.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/colamd/colamd_l.pic.o", + "-fPIC", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/COLAMD/Include", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Include", + "-isystem", + "external/suitesparse+/COLAMD/Source", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/COLAMD/Source", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-c", + "external/suitesparse+/COLAMD/Source/colamd_l.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/colamd/colamd_l.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/b64.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/b64.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/b64.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/b64.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/b64.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/blas.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/blas.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/blas.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/blas.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/blas.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/csr.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/csr.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/csr.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/csr.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/csr.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/error.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/error.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/error.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/error.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/error.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/evaluate.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/evaluate.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/evaluate.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/evaluate.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/evaluate.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/fkvkselect.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/fkvkselect.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/fkvkselect.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/fkvkselect.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/fkvkselect.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/fs.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/fs.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/fs.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/fs.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/fs.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/getopt.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/getopt.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/getopt.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/getopt.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/getopt.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gkregex.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/gkregex.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/gkregex.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/gkregex.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/gkregex.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/htable.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/htable.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/htable.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/htable.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/htable.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/io.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/io.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/io.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/io.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/io.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/itemsets.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/itemsets.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/itemsets.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/itemsets.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/itemsets.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/mcore.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/mcore.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/mcore.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/mcore.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/mcore.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/memory.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/memory.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/memory.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/memory.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/memory.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/omp.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/omp.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/omp.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/omp.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/omp.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/pdb.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/pdb.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/pdb.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/pdb.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/pdb.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/pqueue.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/pqueue.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/pqueue.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/pqueue.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/pqueue.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/random.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/random.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/random.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/random.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/random.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/rw.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/rw.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/rw.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/rw.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/rw.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/seq.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/seq.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/seq.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/seq.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/seq.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/sort.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/sort.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/sort.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/sort.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/sort.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/tokenizer.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/tokenizer.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/tokenizer.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/tokenizer.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/tokenizer.pic.o" + ], + "directory": "/home/matt/work/albatross" + }, + { + "file": "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/util.c", + "arguments": [ + "external/rules_swiftnav+/cc/toolchains/llvm/x86_64-linux/wrappers/clang", + "-U_FORTIFY_SOURCE", + "--target=x86_64-unknown-linux-gnu", + "-U_FORTIFY_SOURCE", + "-fstack-protector", + "-fno-omit-frame-pointer", + "-ffp-contract=off", + "-fcolor-diagnostics", + "-MD", + "-MF", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/util.pic.d", + "-frandom-seed=bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/util.pic.o", + "-fPIC", + "-DLINUX", + "-iquote", + "external/suitesparse+", + "-iquote", + "bazel-out/k8-fastbuild/bin/external/suitesparse+", + "-isystem", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib", + "-isystem", + "external/suitesparse+/SuiteSparse_config", + "-isystem", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/SuiteSparse_config", + "--sysroot=external/rules_swiftnav++swift_cc_toolchain_extension+x86_64-sysroot", + "-no-canonical-prefixes", + "-Wno-builtin-macro-redefined", + "-D__DATE__=\"redacted\"", + "-D__TIMESTAMP__=\"redacted\"", + "-D__TIME__=\"redacted\"", + "-Wno-fortify-source", + "-Wno-absolute-value", + "-Wno-format", + "-Wno-deprecated-declarations", + "-Wno-unused-but-set-variable", + "-Wno-pointer-bool-conversion", + "-Wno-unused-variable", + "-Wno-incompatible-pointer-types-discards-qualifiers", + "-Wno-implicit-const-int-float-conversion", + "-Wno-implicit-function-declaration", + "-Wno-mismatched-new-delete", + "-c", + "external/suitesparse+/CHOLMOD/SuiteSparse_metis/GKlib/util.c", + "-o", + "bazel-out/k8-fastbuild/bin/external/suitesparse+/_objs/GKlib/util.pic.o" + ], + "directory": "/home/matt/work/albatross" + } +] \ No newline at end of file diff --git a/examples/example.bzl b/examples/example.bzl index 49bb1284..eafa5078 100644 --- a/examples/example.bzl +++ b/examples/example.bzl @@ -1,4 +1,4 @@ -load("@rules_swiftnav//cc:defs.bzl", "swift_cc_binary") +load("@rules_swiftnav//cc:defs2.bzl", "swift_add_internal_cc_binary") TAGS = ["manual"] @@ -8,7 +8,7 @@ DEPS = [ ] def example(name, srcs, args): - swift_cc_binary( + swift_add_internal_cc_binary( name = name, srcs = srcs, tags = TAGS,